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;}
!camel-box-v1.0-150x200.png!
{div}

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

The latest release is [Camel 1.34.0 Release]. 

{children:sort=creation|reverse=true}

{div}

h2. Snapshots

Help us test the latest [SNAPSHOTS|http://people.apache.org/repo/m2-snapshot-repository/org/apache/camel/apache-camel]

|| Version ||
| [Download Apache Camel 1.4-SNAPSHOT|http://people.apache.org/repo/m2-snapshot-repository/org/apache/camel/apache-camel/1.4-SNAPSHOT/] |

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

h3. Maven 2 snapshot repository in pom

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>http://people.apache.org/repo/m2-snapshot-repository</url>
      <releases>
          <enabled>false</enabled>
      </releases>
      <snapshots>
          <enabled>true</enabled>
      </snapshots>
  </repository>
{code}

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>http://people.apache.org/repo/m2-snapshot-repository</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>1.4-SNAPSHOT</version>
      </plugin>
  </plugins>
{code}