Versions Compared

Key

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

...

To use this release in your maven project, the proper dependency configuration that you should use in your Maven POM is:

Code Block
xml
xml

<dependency>
  <groupId>org.apache.camel</groupId>
  <artifactId>camel-core</artifactId>
  <version>2.12.2</version>
</dependency>

...

See the Download Archives for all time releases.

Include Page
In Progress
In Progress

...

Snapshots

Help us test the latest SNAPSHOTS

...

...

The camel-1.x branch is no longer maintained therefore snapshots for that branch are not available.

Maven 2 Repositories

Repository

URL

Apache Camel Releases

https://repository.apache.org/content/repositories/releases/

Apache Camel Releases (old)

For Camel 1.6.0 or older releases: http://people.apache.org/repo/m2-ibiblio-rsync-repository/

Apache Camel SNAPSHOTS

https://repository.apache.org/content/repositories/snapshots/

Maven 2 snapshot repository in pom

Camel

In 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:

...

...

Camel Plugins

...

...

...

Then you can use the SNAPSHOT version of mvn camel:run with this in your pom.xml:

...