Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added description for building with the Apache GIT repository

...

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

Building with 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