sldf
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>gettext-commons</artifactId> <version>0.9.6</version> </dependency> </dependencies> ... <repositories> <repository> <id>gettext-commons-repository</id> <url>http://gettext-commons.googlecode.com/svn/maven-repository/</url> </repository> </repositories> ...
If you are using Maven 1.x add the following dependencies to your project.xml:
... <dependencies> <dependency> <groupId>xnap-commons</groupId> <artifactId>gettext-commons</artifactId> <version>0.9.1</version> <url>http://xnap-commons.sf.net/gettext-commons/</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