Versions Compared

Key

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

...

Code Block
mvn clean source:jar install -Dtest=false

Building with Spring 3.0

Camel is shipped build with Spring 2.5.6. If you want Camel to be build against Spring 3.0 you have to build with the maven profile spring-3.x.

Code Block

mvn clean install -Pspring-3.x

You may want to skip testing and do a fast build

Code Block

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

Doing this is needed if you use OSGi where the .jar MANIFEST.MF files contains version ranges.

See Also