Skip to content
maguro edited this page Feb 27, 2011 · 1 revision

Aunit is available in the Maven Central Repository. This allows one to automatically download the the jar by adding it as a testing dependency in a Maven POM or Ant Ivy file.

Example Maven POM dependency

    <dependency>
        <groupId>com.toolazydogs.aunit</groupId>
        <artifactId>aunit-junit</artifactId>
        <version>1.0.2</version>
        <scope>test</scope>
    </dependency>

Example Ant Ivy dependency

    <dependency org="com.toolazydogs.aunit" name="aunit-junit" rev="1.0.2"/>

Snapshots

Development snapshots are published to Sonatype's most excellent Nexus servier. You can add the following to your Maven settings file to automatically pick up the development snapshots.

    <repository>
        <id>sonatype-dist-m2-snapshots</id>
        <url>https://oss.sonatype.org/content/groups/staging/</url>
        <releases><enabled>false</enabled></releases>
        <snapshots><enabled>true</enabled></snapshots>
    </repository>
Clone this wiki locally