Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Wiki Markup
h2. Latest Releases

{div:style=padding-right:20px;float:left;}
!http://camel.apache.org/images/camel-box-small.png!
{div}

{div:style=min-height:200px}
Grab these releases while they are hot!

The latest release is [Camel 2.1.0 Release]. 

{children:sort=creation|reverse=true}

{div}


h2. Getting the latest distributions
{info:title=The URLs below use redirection}
The above URLs use the Apache Mirror system to redirect you to a suitable mirror for your download. Some users have experienced issues with some versions of browsers (e.g. some Safari browsers). If the download doesn't seem to work for you from the above URL then try using [FireFox|http://www.mozilla.com/en-US/firefox/]
{info}

h3. Binary Distribution

||Description||Download Link||PGP Signature file of download||
|Windows Distribution| [apache-camel-2.01.0.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0.zip]| [apache-camel-2.01.0.zip.asc|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0.zip.asc]|
|Unix/Linux/Cygwin Distribution| [apache-camel-2.01.0.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0.tar.gz]| [apache-camel-2.01.0.tar.gz.asc|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0.tar.gz.asc]|
|Windows Distribution (1.x branch)| [apache-camel-1.6.2.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/1.6.2/apache-camel-1.6.2.zip]| [apache-camel-1.6.2.zip.asc|http://www.apache.org/dist/camel/apache-camel/1.6.2/apache-camel-1.6.2.zip.asc]|
|Unix/Linux/Cygwin Distribution (1.x branch)| [apache-camel-1.6.2.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/1.6.2/apache-camel-1.6.2.tar.gz]| [apache-camel-1.6.2.tar.gz.asc|http://www.apache.org/dist/camel/apache-camel/1.6.2/apache-camel-1.6.2.tar.gz.asc]|

h3. Source Distribution

||Description||Download Link||PGP Signature file of download||
|Source for Windows| [apache-camel-2.01.0-src.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0-src.zip]| [apache-camel-2.01.0-src.zip.asc|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0-src.zip.asc]|
|Source for Unix/Linux/Cygwin| [apache-camel-2.01.0-src.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0-src.tar.gz]| [apache-camel-2.01.0-src.tar.gz.asc|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/2.01.0/apache-camel-2.01.0-src.tar.gz.asc]|
|Source for Windows (1.x branch)| [apache-camel-1.6.2-src.zip|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/1.6.2/apache-camel-1.6.2-src.zip]| [apache-camel-1.6.2-src.zip.asc|http://www.apache.org/dist/camel/apache-camel/1.6.2/apache-camel-1.6.2-src.zip.asc]|
|Source for Unix/Linux/Cygwin (1.x branch)| [apache-camel-1.6.2-src.tar.gz|http://www.apache.org/dyn/closer.cgi/camel/apache-camel/1.6.2/apache-camel-1.6.2-src.tar.gz]| [apache-camel-1.6.2-src.tar.gz.asc|http://www.apache.org/dist/camel/apache-camel/1.6.2/apache-camel-1.6.2-src.tar.gz.asc]|

h3. Getting the Binaries using Maven 2

To use this release in your maven project, the proper dependency configuration that you should use in your [Maven POM|http://maven.apache.org/guides/introduction/introduction-to-the-pom.html] is:

{code:xml}
<dependency>
  <groupId>org.apache.camel</groupId>
  <artifactId>camel-core</artifactId>
  <version>2.01.0</version>
</dependency>
{code}


{include:In Progress}

h2. Snapshots

Help us test the latest [SNAPSHOTS|https://repository.apache.org/content/repositories/snapshots/org/apache/camel/apache-camel]

|| Version ||
| [Download Apache Camel 1.6.3-SNAPSHOT|https://repository.apache.org/content/repositories/snapshots/org/apache/camel/apache-camel/1.6.3-SNAPSHOT/] |
| [Download Apache Camel 2.12-SNAPSHOT|https://repository.apache.org/content/repositories/snapshots/org/apache/camel/apache-camel/2.12-SNAPSHOT/] |

h2. 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/] |

h3. Maven 2 snapshot repository in pom

h4. Camel
In your pom.xml file you can add the Maven 2 snapshot repository if you want to try out the xxx-SNAPSHOT versions:
{code:xml}
  <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>
{code}

Then you can use the SNAPSHOT version of camel in your {{pom.xml}}:
{code:xml}
    <dependency>
        <groupId>org.apache.camel</groupId>
        <artifactId>camel-core</artifactId>
        <version>2.12-SNAPSHOT</version>
    </dependency>
{code}

h4. Camel Plugins
And the same setting for the plugin repository if you want to try the latest Apache Camel maven tools also:
{code:xml}
  <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>
{code}

Then you can use the SNAPSHOT version of {{mvn camel:run}} with this in your {{pom.xml}}:
{code: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.12-SNAPSHOT</version>
      </plugin>
  </plugins>
{code}