We maintain a repository that can be used for automated dependency downloading with Maven.
If you are using Maven 2.x add the following sections to your pom.xml:
... <dependencies> <dependency> <groupId>org.xnap.commons</groupId> <artifactId>xnap-commons</artifactId> <version>0.9.6</version> <url>http://xnap-commons.sf.net/gettext-commons/</url> </dependency> </dependencies> ... <repositories> <repository> <id>xnap-commons</id> <name>XNap Commons Repository</name> <url>http://xnap-commons.sourceforge.net/repository</url> </repository> </repositories> ...
If you are using Maven 1.x add the following dependencies to your project.xml:
... <dependencies> <dependency> <id>xnap-commons</id> <version>0.9.6</version> <url>http://xnap-commons.sf.net/</url> </dependency> <dependency> <groupId>gettext-commons</groupId> <artifactId>gettext-commons</artifactId> <version>0.9</version> <url>http://xnap-commons.sf.net/gettext-commons/</url> </dependency> <dependency> <id>commons-logging</id> <version>1.0.4</version> <url>http://jakarta.apache.org/commons/logging/</url> </dependency> </dependencies> ...
And add the XNap Commons repository to your project.properties:
maven.repo.remote = http://www.ibiblio.org/maven,http://xnap-commons.sf.net/repository