Versions Compared

Key

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

...

  • Download and install Maven.
    (Maven 23.21.1 or better newer is required to build Camel 2.5 14 onwards).
    (Maven 3.02.2 5 or better newer is required to build Camel 2.10 18 onwards). NotetitleA note about using  
    (Maven 3.0.4+If you intend 3.3 or newer is required to build Camel 2.10 onwards using Maven 3.0.4+ then first please delete any potential .m2 cache you may have for the POM of org.iso_relax.verifier.jaxp.validation:isorelax-jaxp-bridge:jar:1.0. If interested, the reason for this has been explained here.20 onwards) 
  • Get the latest Source
  • Java
    (1.6.7 or 1.8 to build Camel 2.14 onwards)
    (Java 1.5 is @deprecated and no longer supported from 8 to build Camel 2.7 18 onwards)
    (Java 1.7 is supported from 9 experimental support for building Camel 2.10 19 onwards)

...

  • Prince should be in the executable PATH to generate the PDF documentation

Maven options

To build camel maven has to be configured to use more memory:

Unix/Linux/Mac
Code Block
languagetext
export MAVEN_OPTS="-Xms3000m -Xmx3000m -XX:MaxPermSize=512m"
Windows
Code Block
languagetext
set MAVEN_OPTS=-Xms3000m -Xmx1024mXmx3000m -XX:MaxPermSize=512m

To conserve memory with Java 8 you can set two additional Java options -XX:+UseG1GC to enable G1 garbage collector (default in Java 9) and -XX:+UseStringDeduplication to help decrease Maven memory usage (up to 1.5GB is required currently, but set it a higher):

Unix/Linux/Mac
Code Block
languagetext
export MAVEN_OPTS="-Xmx2G -XX:+UseG1GC -XX:+UseStringDeduplication"
Windows
Code Block
languagetext
set MAVEN_OPTS=-Xmx2G -XX:+UseG1GC -XX:+UseStringDeduplication

You can try to experiment with parallel builds by adding -T1.5C to MAVEN_OPTS, but be wary as some of the plugins are not thread safe, and the console output will be intertwined. With parallel builds and when using the install goal you might experience race conditions with the local repository, using Takari Concurrent Local Repository will help with that.

A normal build

Code Block
languagetext
mvn clean install

A normal build without running tests

Code Block
languagetext
mvn clean install -Pfastinstall

A normal build without running tests but checkstyle verification enabled

Code Block
languagetext

mvn clean install -Dtest=falsePfastinstall,sourcecheck

Doing a Quick Build

Available as of Camel 2.6

The following skips building the manual, the distro and does not execute the unit tests.

Code Block
languagetext

mvn install -Pfastinstall

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.

Code Block

mvn eclipse:eclipse

or

Code Block

mvn idea:idea

Adding Camel Eclipse templates to your workspace

Code Block

mvn -Psetup.eclipse -Declipse.workspace.dir=/path/to/your/workspace

You can also find some helpful notes on usage here.

Importing into Eclipse

If you have not already done so, you will need to make Eclipse aware of the Maven repository so that it can build everything. In the preferences, go to Java->Build Path->Classpath and define a new Classpath Variable named M2_REPO that points to your local Maven repository (i.e., ~/.m2/repository on Unix and c:\Documents and Settings\<user>\.m2\repository on Windows).

You can also get Maven to do this for you:

Code Block

mvn eclipse:configure-workspace -Declipse.workspace=/path/to/the/workspace/ 

Building with checkstyle

To enable source style checking with checkstyle, build Camel with the -Psourcecheck parameter

Code Block

mvn -Psourcecheck clean install

Updating the license headers

Proper license headers are enforced using Apache RAT and Checkstyle Maven plugins. To make it less tedious and error prone you can update the license headers by using:

Code Block
languagetext
mvn -Plicense license:format

This can be invoked from any module, which makes it useful when working on components. You can find the various license headers that the Camel project uses in buildtools/src/main/resources/header-*.txt files. These are regenerated at build time from header.txt in the same directory.

Building source jars

If you want to build jar files with the source code, that for instance Eclipse can important so you can debug the Camel code as well. Then you can run this command from the camel root folder:

Code Block
languagetext

mvn clean source:jar install -Dtest=false

Building with Spring 2.5.6

From Camel 2.4.0 onwards, we switch the default Spring version to 3.0.x, If you want Camel to be build against Spring 2.5.6 you have to build with the maven profile spring-2.x.

Code Block

mvn clean install -Pspring-2.x

You may want to skip testing and do a fast build

Code Block

mvn clean install -Pspring-2.x -Dtest=false

Note: Spring 2.x is no longer supported from Camel 2.7 onwards. The spring-2.x profile has been removed.

Building with Spring 3.1

From Camel 2.10.0 onwards, if you want Camel to be build against Spring 3.1 you have to build with the maven profile spring3.1.

Code Block

mvn clean install -Pspring3.1
Pfastinstall

Working with karaf

...

features

If you change anything in the features.xml from platform/karaf you can run a validation step to ensure the generated features.xml file is correct. You can do this running the following maven goal from the platform directory.

Code Block
languagetext

mvn clean install -Pvalidate

Executing unit tests using Ekstazi

Normally, when you execute the unit tests during your development cycle for a particular component, you are executing all the tests each time. This may become inefficient, when you are changing one class and the effect of this change is limited within the component having many unit tests. Ekstazi is a regression testing tool that can keep track of the test results and the changed classes so that unaffected tests can be skipped during the subsequent testing. For more details of Ekstazi, please refer to the Ekstazi page at http://www.ekstazi.org.

To use Ekstazi, you can run the tests with the maven profile ekstazi.

Code Block
languagetext
mvn test -Pekstazi

See Also