Helpers

Miscellaneous helper scripts and resources used to build the other projects. The main components of the project are settings for the Eclipse IDE, resources for creating Javadoc, and some JUnit test helpers.

The compiled artifacts from all of the BeerDragon projects can be found in the Maven repository hosted on this site. By adding appropriate settings to your Maven settings file you can download the artifacts from this repository to the cache used by your build system.

Adding the following fragment to a pom.xml will include the Javadoc stylesheet.

<project>
<!-- ... -->
<build>
<!-- ... -->
<plugins>
<!-- ... -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- ... -->
<configuration>
<!-- ... -->
<stylesheetfile>javadoc-stylesheet.css</stylesheetfile>
</configuration>
<!-- ... -->
<dependencies>
<!-- ... -->
<dependency>
<groupId>uk.co.beerdragon</groupId>
<artifactId>helpers</artifactId>
<version>0.1.2</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>

Adding the following frament to a pom.xml will include the helpers for Java unit testing.

<project>
<!-- ... -->
<dependencies>
<!-- ... -->
<dependency>
<groupId>uk.co.beerdragon</groupId>
<artifactId>helpers-junit</artifactId>
<version>0.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>