Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Changed and restructured the "Using an IDE" section. Added cross-link to "Importing ServiceMix...".

...

Tip
titleBuilding 3.0-M1 and 3.0-M2

Note that this only works for versions from 3.0-M3.
To build previous versions, you need to run:

mvn -N install
cd tooling
mvn install -Dmaven.test.skip=true
cd ..
mvn install -Dmaven.test.skip=true

Using an IDE

Using Eclipse

For Eclipse, a detailed description is given at Importing ServiceMix into Eclipse. In addition, this page also describes how to start ServiceMix inside Eclipse with all debugging possibilities.

Other IDEs

If you prefer to use an another IDE then you can autogenerate the IDE's project files using maven plugins. e.g.

Code Block

mvn eclipse:eclipse

or

Code Block
mvn idea:idea

etc.

...