Sunny Gupta
Sunny Gupta

Reputation: 7067

CXF implementation of JAX-WS with JDK 1.5

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

Answers (2)

puru
puru

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

Carlo
Carlo

Reputation: 1714

What about this?

  • GroupId: com.sun.xml.ws
  • ArtifactId: jaxws-rt
  • Version: 2.1.3

Source

Upvotes: 1

Related Questions