Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update with links for release 3.0.0-M4

Latest Releases

Section


Column
width20%


{div:style=
Div
Wiki Markup
style
padding-right:20px;float:left;

Image Added

} !http://camel.apache.org/images/camel-box-small.png! {div}



Column
width80%


{div:style=
Div
Wiki Markup
style
min-height:200px
}

Grab

these

releases

while

they

are

hot! * The latest release for Camel 2.x is [Camel 2.7.1 Release]. * The latest release for Camel 1.x is [Camel 1.6.4 Release]. {div}

hot!



Older Releases

See Download Archives

Getting the latest distributions

Info
titleThe 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 Mozilla Firefox

Binary Distribution

Binary Distribution

Description

Download Link

PGP Signature file of download

MD5 Checksum file of download

SHA1 Checksum file of download

Windows Distribution (3.0.x branch)

apache-camel-3.0.0-M4.zip

apache-camel-3.0.0-M4.zip.asc

apache-camel-3.0.0-M4.zip.md5

apache-camel-3.0.0-M4.zip.sha1

Unix/Linux/Cygwin Distribution (3.0.x branch)

apache-camel-3.0.0-M4.tar.gz

apache-camel-3.0.0-M4.tar.gz.asc

apache-camel-3.0.0-M4.tar.gz.md5

apache-camel-3.0.0-M4.zip.sha1

Windows Distribution (2.24.x branch)

Description

Download Link

PGP Signature file of download

Windows Distribution

apache-camel-2.

7

24.1.zip

apache-camel-2.

7

24.1.zip.asc

apache-camel-2.24.1.zip.md5

apache-camel-2.24.1.zip.sha1

Unix/Linux/Cygwin Distribution (2.24.x branch)

apache-camel-2.24.1.tar.gz

apache-camel-2

.7

.24.1.tar.gz.asc

apache-camel-2.24.1.tar.gz.md5

apache-camel-2.

7.1.tar.gz.ascWindows Distribution (1

24.1.zip.sha1

Windows Distribution (2.23.x branch)

apache-camel-2.23.3.zip

apache-camel-2.23.3.zip.asc

apache-camel-2.23.3.zip.md5

apache-camel-2.23.3.zip.sha1

Unix/Linux/Cygwin Distribution (2.23.x branch)

apache-camel-2.23.3.tar.gz

apache-camel-2.23.3.tar.gz.asc

apache-camel-2.23.3.tar.gz.md5

apache-camel-2.23.3.zip.sha1

Windows Distribution (2.22.x branch)

apache-camel-2.22.5.zip

apache-camel-2.22.5.zip.asc

apache-camel-2.22.5.zip.md5

apache-camel-2.22.5.zip.sha1

Unix/Linux/Cygwin Distribution (2.22.x branch)

apache-camel-2.22.5.tar.gz

apache-camel-2.22.5.tar.gz.asc

apache-camel-2.22.5.tar.gz.md5

apache-camel-2.22.5.zip.sha1

Windows Distribution (2.21.x branch)

apache-camel-

1

2.

6

21.

4

5.zip

apache-camel-

1

2.

6

21.

4

5.zip.asc

apache-camel-2.21.5.zip.md5

apache-camel-2.21.5.zip.sha1

Unix/Linux/Cygwin Distribution (

1

2.21.x branch)

apache-camel-

1

2.

6

21.

4

5.tar.gz

apache-camel-

1

2.

6

21.

4

5.tar.gz.asc

apache-camel-2.21.5.tar.gz.md5

apache-camel-2.21.5.zip.sha1

Source Distribution

Keys

The KEYS used to sign the release can be found here.

Getting the Binaries using Maven

...

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

Code Block
xml
languagexml

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

...

See the Download Archives for all time releases.

Include Page

...

In Progress

...

In Progress

...

Snapshots

Help us test the latest SNAPSHOTS

...

Maven 2 Repositories

Repository

URL

Apache Camel Releases

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

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:

...


    <dependency>
        <groupId>org.apache.camel</groupId>
        <artifactId>camel-core</artifactId>
        <version>2.8-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>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:

...