Dear all, I'd recommend renaming the Maven name of the CXF 2.5.2 services component in the future to avoid confusion with the runtime component.
The current pom structure looks like: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.cxf.services</groupId> <artifactId>cxf-services</artifactId> <packaging>pom</packaging> <version>2.5.2</version> <name>Apache CXF Runtime</name> <url>http://cxf.apache.org</url> <parent> <groupId>org.apache.cxf</groupId> <artifactId>cxf</artifactId> <relativePath>../pom.xml</relativePath> <version>2.5.2</version> </parent> <modules> <module>sts</module> <module>wsn</module> </modules> </project> For the future it might be useful having something like <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.cxf.services</groupId> <artifactId>cxf-services</artifactId> <packaging>pom</packaging> <version>2.5.2</version> <name>Apache CXF Services</name> <url>http://cxf.apache.org</url> <parent> <groupId>org.apache.cxf</groupId> <artifactId>cxf</artifactId> <relativePath>../pom.xml</relativePath> <version>2.5.2</version> </parent> <modules> <module>sts</module> <module>wsn</module> </modules> </project> Many thanks and kind regards, Christoph
