Download

Download the latest release version of the jAgg library from SourceForge.net.

Installation

To use the jAgg library, place the jagg-core jar in your classpath.

If you are using Maven 2+, then you may place the following dependency in your pom.xml. Since 0.6.0, jAgg has been available in the Maven 2 Central Repository.

<dependency>
    <groupId>net.sf.jagg</groupId>
    <artifactId>jagg-core</artifactId>
    <version>0.9.0</version>
</dependency>

The jAgg library does not depend on any third-party libraries, but it does rely on JUnit 4.8.2 for JUnit test cases when building through Maven.

Building from source

It is possible to build jAgg directly from its source code, if the latest unreleased changes are needed. Use a Subversion client to get the source code and Apache Maven to build it. Here are the steps:

  1. Get the latest jAgg source code from Sourceforge Subversion using the following command:
    svn co https://jagg.svn.sourceforge.net/svnroot/jagg/trunk jagg
  2. Run the following Maven command to build jAgg and install it into the local repository:
    mvn clean install