Groovy Dice 1.4.1 is the latest official stable release.
Groovy Dice is available for download at the project's website. This package contains all JAR files needed to use Groovy Dice in a Java/Groovy application, the complete source code and an offline version of this website.
If you want to add Groovy Dice as a dependency, just put the following snippet to your POM:
<repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> <layout>default</layout> </repository> </repositories> <dependencies> <dependency> <groupId>net.sf.groovydice</groupId> <artifactId>groovydice</artifactId> <version>1.4.1</version> </dependency> </dependencies>
Another way to get Groovy Dice is to checkout its code directly from our Subversion server. For more information, read the source repository page.
Groovy Dice is built by Maven 2.
After check out the code, just open the terminal (bash, ms-dos prompt, whatever) and run the following command line at the project's root folder:
mvn package site
This command line will compile the source code, run all test cases and create the Groovy Dice JAR file. An offline version of this website will be generated as well.
Needless to say that you must have Maven 2 installed in your machine. Further instructions on how to download and configure Maven can be found at Maven's website.