Repository
Antidoto consists of a set of maven2 subsystems. The sourceforge file release system does not support maven builds. In fact it is not necessary, hence maven uses repositories to distribute artifacts.
The antidoto maven artifacts are deployed into two different repositories: a release and a snapshot repository. They can be found under the urls:
Releases: http://antidoto.sf.net/repo/m2 Snapshots: http://antidoto.sf.net/repo/m2-snapshot
To use this artifacts you can simply add the Antidoto repository to your settings. Refer to the maven documentation to see how to add repositories to the maven settings.
<repository> <id>antidoto</id> <name>Antidoto repository</name> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> <url>http://antidoto.sf.net/repo/m2</url> </repository> </repositories> -- or -- <repository> <id>antidoto_snapshot</id> <name>Antidoto snapshot repository</name> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <url>http://antidoto.sf.net/repo/m2-snapshot</url> </repository> </repositories>