Reputation: 7067
When I googled, I found out the JAX-WS implementation is coming with JDK 1.6 rt.jar.
But I want to use JAX-WS CXF implementation with JDK 1.5.
I am not able to find the correct maven dependencies for this.
Can anyone share any good links regarding this.
Upvotes: 1
Views: 1631
Reputation: 264
Please use the following dependency on our POM file, I hope it would be enough.
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-bundle</artifactId>
<version>2.7.2</version>
</dependency>
Thanks!
Upvotes: 0