Migrating from java 8 to 11 - jaxws-rt
问题 I´ve migrated from Java 8 to Java 11 and I´ve found that some Java EE libraries are deprecated and I have to use some third party dependencies instead. So I´ve added these dependencies to maven pom.xml <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> </dependency> <!-- JAXWS for Java 11 --> <dependency> <groupId>com.sun.xml.ws</groupId> <artifactId>jaxws-rt</artifactId> <version>${com.sun.xml.ws.jaxws-rt.version}</version> <type>pom</type> </dependency>