Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions jaxws-ri/boms/bom-ext/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2025 Oracle and/or its affiliates. All rights reserved.

This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -36,8 +36,8 @@
<asm.version>9.7</asm.version>
<eclipselink.version>4.0.3</eclipselink.version>
<junit.version>4.13.2</junit.version>
<mail-api.version>2.1.3</mail-api.version>
<angus-mail.version>2.0.3</angus-mail.version>
<mail-api.version>2.1.5</mail-api.version>
<angus-mail.version>2.0.5</angus-mail.version>
<servlet-api.version>6.1.0</servlet-api.version>
</properties>

Expand Down
6 changes: 3 additions & 3 deletions jaxws-ri/boms/bom/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2025 Oracle and/or its affiliates. All rights reserved.

This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -45,8 +45,8 @@
<streambuffer.version>2.1.0</streambuffer.version>
<woodstox-core.version>7.0.0</woodstox-core.version>
<stax2-api.version>4.2.2</stax2-api.version>
<activation-api.version>2.1.3</activation-api.version>
<angus-activation.version>2.0.2</angus-activation.version>
<activation-api.version>2.1.4</activation-api.version>
<angus-activation.version>2.0.3</angus-activation.version>
<jakarta.annotation-api.version>3.0.0</jakarta.annotation-api.version>
</properties>

Expand Down
4 changes: 2 additions & 2 deletions jaxws-ri/extras/jaxws-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright (c) 2006, 2024 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2006, 2025 Oracle and/or its affiliates. All rights reserved.

Oracle licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
Expand Down Expand Up @@ -287,7 +287,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>8.4.0</version>
<version>12.1.8</version>
<configuration>
<failBuildOnCVSS>8</failBuildOnCVSS>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
Expand Down
80 changes: 80 additions & 0 deletions jaxws-ri/extras/jaxws-maven-plugin/src/it/wsimport/file/ebi.wsdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.

Oracle licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-->

<definitions
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://example.com/hello"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
name="HelloService"
targetNamespace="http://example.com/hello">

<types>
<xsd:schema targetNamespace="http://example.com/hello">
<xsd:element name="sayHelloRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>

<xsd:element name="sayHelloResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="greeting" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</types>

<message name="sayHelloRequest">
<part name="parameters" element="tns:sayHelloRequest"/>
</message>

<message name="sayHelloResponse">
<part name="parameters" element="tns:sayHelloResponse"/>
</message>

<portType name="HelloPortType">
<operation name="sayHello">
<input message="tns:sayHelloRequest"/>
<output message="tns:sayHelloResponse"/>
</operation>
</portType>

<binding name="HelloBinding" type="tns:HelloPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sayHello">
<soap:operation soapAction="sayHelloAction"/>
<input><soap:body use="literal"/></input>
<output><soap:body use="literal"/></output>
</operation>
</binding>

<service name="HelloService">
<port name="HelloPort" binding="tns:HelloBinding">
<soap:address location="http://localhost:8080/hello"/>
</port>
</service>

</definitions>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright (c) 2012, 2022 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2025 Oracle and/or its affiliates. All rights reserved.

Oracle licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
Expand Down Expand Up @@ -64,8 +64,7 @@
<target>
<delete dir="${project.build.directory}" />
<mkdir dir="${project.build.directory}" />
<get src="http://www.ebi.ac.uk/webservices/chebi/2.0/webservice?wsdl"
dest="${project.build.directory}/ebi.wsdl" />
<copy file="${project.basedir}/ebi.wsdl" tofile="${project.build.directory}/ebi.wsdl" />
</target>
</configuration>
</execution>
Expand Down
80 changes: 80 additions & 0 deletions jaxws-ri/extras/jaxws-maven-plugin/src/it/wsimport/url/ebi.wsdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright (c) 2025 Oracle and/or its affiliates. All rights reserved.

Oracle licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

-->

<definitions
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://example.com/hello"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
name="HelloService"
targetNamespace="http://example.com/hello">

<types>
<xsd:schema targetNamespace="http://example.com/hello">
<xsd:element name="sayHelloRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="name" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>

<xsd:element name="sayHelloResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="greeting" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
</types>

<message name="sayHelloRequest">
<part name="parameters" element="tns:sayHelloRequest"/>
</message>

<message name="sayHelloResponse">
<part name="parameters" element="tns:sayHelloResponse"/>
</message>

<portType name="HelloPortType">
<operation name="sayHello">
<input message="tns:sayHelloRequest"/>
<output message="tns:sayHelloResponse"/>
</operation>
</portType>

<binding name="HelloBinding" type="tns:HelloPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sayHello">
<soap:operation soapAction="sayHelloAction"/>
<input><soap:body use="literal"/></input>
<output><soap:body use="literal"/></output>
</operation>
</binding>

<service name="HelloService">
<port name="HelloPort" binding="tns:HelloBinding">
<soap:address location="http://localhost:8080/hello"/>
</port>
</service>

</definitions>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.

Copyright (c) 2012, 2022 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2025 Oracle and/or its affiliates. All rights reserved.

Oracle licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
Expand Down Expand Up @@ -65,7 +65,7 @@
</goals>
<configuration>
<wsdlUrls>
<wsdlUrl>http://www.ebi.ac.uk/webservices/chebi/2.0/webservice?wsdl</wsdlUrl>
<wsdlUrl>file://${project.basedir}/ebi.wsdl</wsdlUrl>
</wsdlUrls>
<xnocompile>false</xnocompile>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions jaxws-ri/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 2012, 2024 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2012, 2025 Oracle and/or its affiliates. All rights reserved.

This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -416,7 +416,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>8.4.0</version>
<version>12.1.8</version>
<configuration>
<failBuildOnCVSS>7</failBuildOnCVSS>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
Expand Down
4 changes: 2 additions & 2 deletions jaxws-ri/runtime/policy/pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 1997, 2024 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 1997, 2025 Oracle and/or its affiliates. All rights reserved.

This program and the accompanying materials are made available under the
terms of the Eclipse Distribution License v. 1.0, which is available at
Expand Down Expand Up @@ -410,7 +410,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>8.4.0</version>
<version>12.1.8</version>
<configuration>
<failBuildOnCVSS>7</failBuildOnCVSS>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
Expand Down