I believe the CXF project is the top level parent project all the other
modules are built into. This is a Maven thing - for a multi module
project (like CXF) the parent project is also deployed with a packaging
type of POM. If you want to download CXF via Maven you either need to
go for a bundled version or choose the individual parts you require. E.g.
Taken from http://cxf.apache.org/docs/using-cxf-with-maven.html:
<dependencies>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>2.6.8</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>2.6.8</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>2.6.8</version>
</dependency>
</dependencies>
Regards,
Lee
kongar wrote:
Hello all,
I'm trying to migrate my project to maven from ant, and I am getting a
failure when I try to download the non bundled version of cxf.
Specifically, this dependency fails:
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf</artifactId>
<version>2.6.0</version>
</dependency>
Changing the artifactId to cxf-bundle will download the bundled version just
fine. Browsing through the maven repo, it does look like the jars are not
available (http://repo1.maven.org/maven2/org/apache/cxf/cxf/2.6.0/). Is
there a reason why the non-bundled version is not available?
--
View this message in context:
http://cxf.547215.n5.nabble.com/CXF-and-maven-tp5724400.html
Sent from the cxf-user mailing list archive at Nabble.com.