Latest Releases
Older ReleasesGetting the latest distributions
Binary Distribution
Source Distribution
KeysThe KEYS used to sign the release can be found here. Getting the Binaries using Maven 2To use this release in your maven project, the proper dependency configuration that you should use in your Maven POM is: <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-core</artifactId> <version>2.9.1</version> </dependency> Getting past releasesSee the Download Archives for all time releases. Releases In ProgressThe following releases are currently in progress SnapshotsHelp us test the latest SNAPSHOTS
Maven 2 Repositories
Maven 2 snapshot repository in pomCamelIn 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>https://repository.apache.org/content/repositories/snapshots/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> Then you can use the SNAPSHOT version of camel in your pom.xml: <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-core</artifactId> <version>2.10-SNAPSHOT</version> </dependency> Camel PluginsAnd 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>https://repository.apache.org/content/repositories/snapshots/</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>2.10-SNAPSHOT</version> </plugin> </plugins> |