JAVA-8736: fixing plugin versions in core-java-11-2 to work with JDK 17

This commit is contained in:
chaos2418 2021-12-04 10:00:10 +05:30
parent fe00d52ad5
commit fdadff3a51
7 changed files with 29 additions and 42 deletions

View File

@ -36,18 +36,6 @@
<artifactId>jakarta.xml.ws-api</artifactId> <artifactId>jakarta.xml.ws-api</artifactId>
<version>${jakarta.ws-api.version}</version> <version>${jakarta.ws-api.version}</version>
</dependency> </dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>${jaxws-rt.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-ri</artifactId>
<version>${jaxws-ri.version}</version>
<type>pom</type>
</dependency>
</dependencies> </dependencies>
<build> <build>
@ -83,10 +71,10 @@
<maven.compiler.target.version>11</maven.compiler.target.version> <maven.compiler.target.version>11</maven.compiler.target.version>
<guava.version>29.0-jre</guava.version> <guava.version>29.0-jre</guava.version>
<mockserver.version>5.11.1</mockserver.version> <mockserver.version>5.11.1</mockserver.version>
<jakarta.ws-api.version>3.0.0</jakarta.ws-api.version> <jakarta.ws-api.version>3.0.1</jakarta.ws-api.version>
<jaxws-rt.version>3.0.0</jaxws-rt.version> <jaxws-rt.version>3.0.2</jaxws-rt.version>
<jaxws-ri.version>2.3.1</jaxws-ri.version> <jaxws-ri.version>3.0.2</jaxws-ri.version>
<jaxws-maven-plugin.version>2.3.2</jaxws-maven-plugin.version> <jaxws-maven-plugin.version>3.0.2</jaxws-maven-plugin.version>
</properties> </properties>
</project> </project>

View File

@ -1,10 +1,10 @@
package com.baeldung.soap.ws.client.generated; package com.baeldung.soap.ws.client.generated;
import javax.xml.bind.annotation.XmlAccessType; import jakarta.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType; import jakarta.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType; import jakarta.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType; import jakarta.xml.bind.annotation.XmlType;
/** /**

View File

@ -1,19 +1,19 @@
package com.baeldung.soap.ws.client.generated; package com.baeldung.soap.ws.client.generated;
import javax.jws.WebMethod; import jakarta.jws.WebMethod;
import javax.jws.WebParam; import jakarta.jws.WebParam;
import javax.jws.WebResult; import jakarta.jws.WebResult;
import javax.jws.WebService; import jakarta.jws.WebService;
import javax.jws.soap.SOAPBinding; import jakarta.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso; import jakarta.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.Action; import jakarta.xml.ws.Action;
/** /**
* This class was generated by the JAX-WS RI. * This class was generated by the JAX-WS RI.
* JAX-WS RI 2.3.2 * JAX-WS RI 3.0.2
* Generated source version: 2.2 * Generated source version: 3.0
* *
*/ */
@WebService(name = "CountryService", targetNamespace = "http://server.ws.soap.baeldung.com/") @WebService(name = "CountryService", targetNamespace = "http://server.ws.soap.baeldung.com/")

View File

@ -4,17 +4,17 @@ package com.baeldung.soap.ws.client.generated;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.net.URL; import java.net.URL;
import javax.xml.namespace.QName; import javax.xml.namespace.QName;
import javax.xml.ws.Service; import jakarta.xml.ws.Service;
import javax.xml.ws.WebEndpoint; import jakarta.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient; import jakarta.xml.ws.WebServiceClient;
import javax.xml.ws.WebServiceException; import jakarta.xml.ws.WebServiceException;
import javax.xml.ws.WebServiceFeature; import jakarta.xml.ws.WebServiceFeature;
/** /**
* This class was generated by the JAX-WS RI. * This class was generated by the JAX-WS RI.
* JAX-WS RI 2.3.2 * JAX-WS RI 3.0.2
* Generated source version: 2.2 * Generated source version: 3.0
* *
*/ */
@WebServiceClient(name = "CountryServiceImplService", targetNamespace = "http://server.ws.soap.baeldung.com/", wsdlLocation = "http://localhost:8888/ws/country?wsdl") @WebServiceClient(name = "CountryServiceImplService", targetNamespace = "http://server.ws.soap.baeldung.com/", wsdlLocation = "http://localhost:8888/ws/country?wsdl")
@ -75,7 +75,7 @@ public class CountryServiceImplService
/** /**
* *
* @param features * @param features
* A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values. * A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return * @return
* returns CountryService * returns CountryService
*/ */

View File

@ -1,15 +1,14 @@
package com.baeldung.soap.ws.client.generated; package com.baeldung.soap.ws.client.generated;
import javax.xml.bind.annotation.XmlEnum; import jakarta.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType; import jakarta.xml.bind.annotation.XmlType;
/** /**
* <p>Java class for currency. * <p>Java class for currency.
* *
* <p>The following schema fragment specifies the expected content contained within this class. * <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre> * <pre>
* &lt;simpleType name="currency"&gt; * &lt;simpleType name="currency"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;

View File

@ -1,7 +1,7 @@
package com.baeldung.soap.ws.client.generated; package com.baeldung.soap.ws.client.generated;
import javax.xml.bind.annotation.XmlRegistry; import jakarta.xml.bind.annotation.XmlRegistry;
/** /**

View File

@ -1,2 +1,2 @@
@javax.xml.bind.annotation.XmlSchema(namespace = "http://server.ws.soap.baeldung.com/") @jakarta.xml.bind.annotation.XmlSchema(namespace = "http://server.ws.soap.baeldung.com/")
package com.baeldung.soap.ws.client.generated; package com.baeldung.soap.ws.client.generated;