Versions Compared

Key

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

...

The following avoids running all the unit test cases, we just skip the test running phase and not the building part

Code Block
mvn -Dtest=false -DfailIfNoTests=falseDskipTests clean install 

Notice that from Camel 1.4 we have made it even easier:

Code Block

mvn -Dtest=false clean install

Using an IDE

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

...