Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tip
titleSnapshots repository

No release was published since Maven2 is working, but nightly build are available in Archiva : http://forge.octo.com/archiva/browse/com.octo.captcha/jcaptcha/1.0-SNAPSHOT

In order to get the lastest version you have to add the following repository to your project POM :http

Code Block

  <repositories>
    <repository>
      <id>octo-forge-snapshots</id>
      <name>Snapshots for OCTO projects</name>
      <url>http://forge.octo.com/archiva/repository/forge-snapshots/</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>

Add the following dependency to your project POM

...