All the libraries released in this project can be added to any mavenized project. You will first need to add the repository to your
project's pom.xml:
pom.xml repository fragmentToggle Line Numbers | 1
<repository> 2
<id>javautil</id> 3
<name>Java Util Repository</name> 4
<url>http://downloads.sourceforge.net/project/javautil/</url> 5
</repository>
|
All the maven group id's related to this project are either equal to or start with 'net.sourceforge.javautil'. So for instance,
in order to add the 0.0.5 release of the commons library you would add the following to your project's pom.xml:
pom.xml dependency fragmentToggle Line Numbers | 1
<dependency> 2
<groupId>net.sourceforge.javautil</groupId> 3
<artifactId>common</artifactId> 4
<version>0.0.5</version> 5
<scope>compile</scope> 6
</dependency>
| |