public
Description: A JSR-241 implementation on top of JSR-292
Homepage:
Clone URL: git://github.com/chanwit/g7.git
g7 /
README.txt
Building
========

To build you will need:

 * JDK 1.7-ea-b61+ ( http://download.java.net/jdk7/binaries )
 * Apache Ant 1.7+ ( http://ant.apache.org )

For detailed instructions please see:

    http://groovy.codehaus.org/Building+Groovy+from+Source

You need to manually install ASM 3.2 for emitting INVOKEDYNAMIC instructions first.
The following example is for install only asm-3.2.jar:

    mvn install:install-file -DgroupId=asm -DartifactId=asm -Dversion=3.2 \
    -Dpackaging=jar -Dfile=asm/lib/asm-3.2.jar
    
But you also need to install these jars to your maven repository: 
    * asm-3.2.jar
    * asm-commons-3.2.jar
    * asm-analysis-3.2.jar
    * asm-tree-3.2.jar
    * asm-util-3.2.jar

To build everything, run tests and create a complete installation:

    ant install

To build without running tests:

    ant install -DskipTests=true