Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
 
 <parent>
    <artifactId>parent</artifactId>
    <groupId>org.apache.servicemix.tutorial</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>

Adding version of cxf to pom.xml

We must specify version of CXF.

No Format
 
<project>
...
  <properties>
    ...
	<cxf-version> 2.0.7</cxf-version>
    ...
  </properties>
...
</project>

Adding org.apache.cxf plugin

We add this plugin to the generated pom.xml file to element plugins.

...