Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fix repository locations.

...

Snapshot builds for all active releases are published to the Apache snapshot repository.

Version 1.2.x, 1.3.x, 2.0.x, 2.1.x and trunk (2.2.x as of this writing) can be found in the snapshot repository on repository.apache.org. A maven project can access this snapshot repository by adding the following repository in pom.xml:
Code Block
XML
XML
<repository>
    <id>apache.snapshots</id>
    <name>Apache Snapshot Repository</name>
    <url>http://repository.apache.org/snapshots</url>
    <releases>
        <enabled>false</enabled>
    </releases>
</repository>
For versions 1.0.x,

...

and 1.1.x you can find the snapshots on people.apache.org.

A maven project can access the snapshot builds by adding the following repository in pom.xml :

...