Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Removed the Spring 2.x information as Camel 2.7 is not supported anymore

...

Code Block
mvn clean source:jar install -Pfastinstall

Building with Spring

...

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,fastinstall

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.

...