This document describes These instructions describe how to install a binary distribution of Groovy.
The latest release of Groovy is groovy-1.0.
first, Download a binary distribution of Groovy and unpack the distribution it into some file on your local file system.Wiki Markup {link:download|http://dist.codehaus.org/groovy/distributions/?M=D}{link}- set your GROOVY_HOME environment variable to the directory you unpacked the distribution
- add GROOVY_HOME/bin to your PATH environment variable.
- set your JAVA_HOME environment variable to point to your JDK. On OS X this is /Library/Java/Home, on other unixes its often /usr/java etc. If you've already installed tools like Ant or Maven you've probably already done this step.you
You should now have Groovy installed properly. You can test this by typing the following in a command shell
...
:
| Code Block |
|---|
groovysh |
Which should create an interactive groovy shell where you can type Groovy statements. Or to run the Swing interactive console type:
| Code Block |
|---|
groovyConsole |
To run a specific groovy Groovy script type:
| Code Block |
|---|
groovy SomeScript.groovy |