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.

mvn 

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

Using GIT

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
cd servicemix4-specs
mvn install
cd servicemix4-bundles
mvn install
cd servicemix4-nmr
mvn install
cd servicemix4-features
mvn install

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

mvn -Pfastinstall install

or

mvn -Dmaven.test.skip=true install
  • No labels