Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{scrollbar}

Anchor
top
top

4. Examples

The ServiceMix distribution comes with several examples categories. The following sections of this document will help you understanding the differences between these examples and explain alternative methods to start them

...

Here are the examples shipped with ServiceMix:

#top

Maven configuration

ServiceMix release is not available on public maven repositories, so you need to either:

...

Include Page

...

Configuring Maven
Configuring Maven

The last point can be done by modifying your ~/.m2/settings.xml configuration file to include the following informations:

Code Block
langxml

<settings>
  <profiles>
    <profile>
      <id>incubating</id>
      <repositories>
        <repository>
          <id>apache-incubating</id>
          <url>http://people.apache.org/repo/m2-incubating-repository</url>
        </repository>
      </repositories>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>incubating</activeProfile>
  </activeProfiles>
</settings>

JBI packaging using Maven

...

Then, you can deploy the Service Assembly along with the needed JBI components on an already started ServiceMix container:

Code Block
cd [SM30UG:servicemix_install_dir]/examples/wsdl-first/wsdl-first-sa
mvn jbi:projectDeploy

...