How to find and install Groovy from binaries
The Groovy project is hosted at http://www.groovy-lang.org/download.html and can be downloaded as a ZIP archive or a platform-specific installer for Windows and certain Linux distributions. At the time of writing this book, the latest version of the language available is Groovy 2.4.4.
In five simple steps, you can run Groovy and start experimenting with the language:
- Download the latest build from http://www.groovy-lang.org/download.html.
- Unzip the archive into a directory on your computer.
- Set an environment variable in your command line or shell for
GROOVY_HOME
. This should point to the base directory to which you unzipped the archive. - Add the Groovy bin directory to your
PATH
. This will be%GROOVY_HOME%\bin
(Windows) or$GROOVY_HOME/bin
on Linux and Unix systems. - Open a new command shell and test your setup by issuing the Groovy version command
groovy -v
.
Note
Windows users can also make use of the Windows Installer, which can be found at http://www...