Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[metro-dev] metro-jax-ws still need stuff from sun ?

I am starting to adopt the new Jakarta EE 9 release.
In the past I used JAX-WS Maven plugin with dependencies like :

        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
            <version>2.2.12</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-impl -->
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
            <version>2.2.11</version>
        </dependency>

Now I read at https://eclipse-ee4j.github.io/metro-jax-ws/

that Maven Jax-Ws plugin still need dependencies from sun ?
<dependencies>
            <dependency>
                <groupId>com.sun.xml.ws</groupId>
                <artifactId>jaxws-rt</artifactId>
                <version>3.0.0</version>
                <scope>runtime</scope>
            </dependency>
        </dependencies>
Why ? does not Jakarta EE 9 port all namespace ?

Mail priva di virus. www.avast.com

Back to the top