Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Building ServiceMix 4

ServiceMix uses Maven as its build tool. If you don't fancy using Maven you can use your IDE directly or Download a distribution or JAR.

Code Block
mvn 

You will find more detailes instructions in the Users' Guide.

Using GIT

Code Block
git clone git://git.apache.org/servicemix4-specs.git
git clone git://git.apache.org/servicemix4-bundles.git
git clone git://git.apache.org/servicemix4-nmr.git
git clone git://git.apache.org/servicemix4-features.git
  • Build the code with the following commands in this order
Code Block
cd servicemix4-specs
mvn install
Code Block
cd servicemix4-bundles
mvn install
Code Block
cd servicemix4-nmr
mvn install
Code Block
cd servicemix4-features
mvn install

If you want to build SMX4 without running the tests, you could use one of the following commands:

Code Block
mvn -Pfastinstall install

or

Code Block
mvn -Dmaven.test.skip=true install