1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?xml version="1.0"?>
<document>
<properties>
<title>Gettext Commons</title>
</properties>
<body>
<section name="Maven Repository">
<p>We maintain a repository that can be used for automated
dependency downloading with Maven.</p>
</section>
<section name="Maven 2.x">
<p>If you are using <a href="http://maven.apache.org/"
target="_blank">Maven 2.x</a> add the following sections to your
pom.xml:</p>
<source>
...
<dependencies>
<dependency>
<groupId>org.xnap.commons</groupId>
<artifactId>gettext-commons</artifactId>
<version>0.9.6</version>
</dependency>
</dependencies>
...
<repositories>
<repository>
<id>gettext-commons-site</id>
<url>http://gettext-commons.googlecode.com/svn/maven-repository/</url>
</repository>
</repositories>
...
</source>
</section>
<section name="Maven 1.x">
<p>If you are using <a href="http://maven.apache.org/maven-1.x/"
target="_blank">Maven 1.x</a> add the following dependencies to
your project.xml:</p>
<source>
...
<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>
...
</source>
<p>And add the XNap Commons repository to your
project.properties:</p>
<source>
maven.repo.remote = http://www.ibiblio.org/maven,http://xnap-commons.sf.net/repository
</source>
</section>
</body>
</document>
<!--
Local Variables:
sgml-indent-data: t
End:
-->
|