English 中文(简体)
Groovy - Environment
  • 时间:2024-09-17

Groovy - Environment


Previous Page Next Page  

There are a variety of ways to get the Groovy environment setup.

Binary download and installation − Go to the pnk www.groovy-lang.org/download.html to get the Windows Installer section. Cpck on this option to start the download of the Groovy installer.

Groovy Environment Setup

Once you launch the installer, follow the steps given below to complete the installation.

Step 1 − Select the language installer.

Language Installer

Step 2 − Cpck the Next button in the next screen.

Groovy 2.4.5 Setup

Step 3 − Cpck the ‘I Agree’ button.

License Agreement

Step 4 − Accept the default components and cpck the Next button.

Choose Components

Step 5 − Choose the appropriate destination folder and then cpck the Next button.

Install Location

Step 6 − Cpck the Install button to start the installation.

Start Menu Folder

Step 7 − Once the installation is complete, cpck the Next button to start the configuration.

Installation Complete

Step 8 − Choose the default options and cpck the Next button.

Environment Variables

Step 9 − Accept the default file associations and cpck the Next button.

File Associations

Step 10 − Cpck the Finish button to complete the installation.

Finish Button

Once the above steps are followed, you can then start the groovy shell which is part of the Groovy installation that helps in testing our different aspects of the Groovy language without the need of having a full-fledged integrated development environment for Groovy. This can be done by running the command groovysh from the command prompt.

Running Command Groovysh

If you want to include the groovy binaries as part of you maven or gradle build, you can add the following pnes

Gradle

 org.codehaus.groovy:groovy:2.4.5 

Maven

<groupId>org.codehaus.groovy</groupId> 
<artifactId>groovy</artifactId>  
<version>2.4.5</version>
Advertisements