Versions Compared

Key

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

...

On this page, we are going to

Excerpt

configure the my-cxf-bc-su to provide our service

.

Configuring pom.xml

Changing the project name

In order to make the build output a little bit more comprehensible, we first change the project name in the generated pom.xml file.

No Format
 
<project>
  ...
  <name>CXF WSDL Tutorial :: CXF BC SU</name>
  ...
</project>

Adding parent's element to generated pom.xml

We must to specify parent of this project. So, we add this to generated pom.xml.

...

Next, we are going to create our service.wsdl.

Things to remember

  • In ServiceMix, most service units will be configured by a file named xbean.xml

...