Latest Releases
Grab these releases while they are hot! The latest release is Camel 1.4.0 Release. Releases In ProgressThe following releases are currently in progress SnapshotsHelp us test the latest SNAPSHOTS
Maven 2 Repositories
Maven 2 snapshot repository in pomIn your pom.xml file you can add the Maven 2 snapshot repository if you want to try out the xxx-SNAPSHOT versions: <repository> <id>apache.snapshots</id> <name>Apache Development Snapshot Repository</name> <url>http://people.apache.org/repo/m2-snapshot-repository</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> And the same setting for the plugin repository if you want to try the latest Apache Camel maven tools also: <pluginRepository> <id>apache.snapshots</id> <name>Apache Development Snapshot Repository</name> <url>http://people.apache.org/repo/m2-snapshot-repository</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> Then you can use the SNAPSHOT version of mvn camel:run with this in your pom.xml: <plugins> <!-- Allows the routes to be run via 'mvn camel:run' --> <plugin> <groupId>org.apache.camel</groupId> <artifactId>camel-maven-plugin</artifactId> <version>1.4-SNAPSHOT</version> </plugin> </plugins> |
