Skip to content
Christian Kaltepoth edited this page Jan 7, 2015 · 1 revision

Testing the snapshots

If you want to give the latest development version of Rewrite a try, you will have to add the Sonatype OSS snapshot repository to your pom.xml:

<repositories>
  <repository>
    <id>sonatype-oss-snapshots</id>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

Now you can set the Rewrite version to the latest snapshot version which is currently 3.0.0-SNAPSHOT:

<dependency>
  <groupId>org.ocpsoft.rewrite</groupId>
  <artifactId>rewrite-servlet</artifactId>
  <version>3.0.0-SNAPSHOT</version>
</dependency>

Any kind of feedback is welcome. :)