Download has been edited by Hadrian Zbarcea (Feb 17, 2009).

(View changes)

Content:

Latest Releases

Getting the latest distributions

Binary Distribution

Description Download Link PGP Signature file of download
Windows Distribution apache-camel-1.5.0.zip apache-camel-1.5.0.zip.asc
Unix/Linux/Cygwin Distribution apache-camel-1.5.0.tar.gz apache-camel-1.5.0.tar.gz.asc
The above URLs 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

Source Distribution

Description Download Link PGP Signature file of download
Source for Windows apache-camel-1.5.0-src.zip apache-camel-1.5.0-src.zip.asc
Source for Unix/Linux/Cygwin apache-camel-1.5.0-src.tar.gz apache-camel-1.5.0-src.tar.gz.asc

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

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


Releases In Progress

The following releases are currently in progress

Snapshots

Help us test the latest SNAPSHOTS

Version
Download Apache Camel 2.0-SNAPSHOT

Maven 2 Repositories

Repository URL
Apache Camel Releases http://people.apache.org/repo/m2-ibiblio-rsync-repository//
Apache Camel SNAPSHOTS http://people.apache.org/repo/m2-snapshot-repository/

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>http://people.apache.org/repo/m2-snapshot-repository</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.0-SNAPSHOT</version>
    </dependency>

Camel Plugins

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>2.0-SNAPSHOT</version>
      </plugin>
  </plugins>

Reply via email to