Versions Compared

Key

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

...

Environment:

  • JDK 1.5
  • Maven 2.0.4 6 or greater
  • Eclipse 3.3 or greater

...

1) Grab the sources from the Subversion repository or download the ServiceMix source distribution
2) Build the source with the following two separate commands command on the command line:

Code Block
mvn install
Warning
Unit tests errors
Unit tests errors

If you encounter some failures due to unit tests errors do the following:

Code Block

mvn install -Dmaven.test.skip=true
Warning
ServiceMix 3.2.x build
ServiceMix 3.2.x build

If you try to build ServiceMix 3.2.x version, you need to do the following:

Code Block

mvn -Dmaven.test.skip=true -P=step1
mvn -Dmaven.test.skip=true -P=step2
Warning
On checkstyle errors
On checkstyle errors

If maven build dies with some checkstyle or pmd errors then do the following:

Code Block
mvn -Dmaven.test.skip=true -Pstep1,nochecks install
mvn -Dmaven.test.skip=true -Pstep2,nochecks install
Warning

3) Now create the necessary Eclipse project files using the following command on the command line:

...