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><!-- ... --></project>
<build><!-- ... --></build>
<plugins><!-- ... --></plugins>
<plugin><groupId>org.apache.maven.plugins</groupId></plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<!-- ... -->
<configuration><!-- ... --></configuration>
<stylesheetfile>javadoc-stylesheet.css</stylesheetfile>
<!-- ... -->
<dependencies><!-- ... --></dependencies>
<dependency><groupId>uk.co.beerdragon</groupId></dependency>
<artifactId>helpers</artifactId>
<version>0.1.2</version>
Adding the following frament to a pom.xml
will include
the helpers for Java unit testing.
<project><!-- ... --></project>
<dependencies><!-- ... --></dependencies>
<dependency><groupId>uk.co.beerdragon</groupId></dependency>
<artifactId>helpers-junit</artifactId>
<version>0.1.0</version>
<scope>test</scope>
Copyright (c) 2015, all rights reserved.