Table of Contents
To build a Groovy project, you use the Groovy plugin. This plugin extends the Java plugin to add Groovy compilation capabilities to your project. Your project can contain Groovy source code, Java source code, or a mix of the two. In every other respect, a Groovy project is identical to a Java project, which we have already seen in Chapter 44, Java Quickstart.
Let's look at an example. To use the Groovy plugin, add the following to your build file:
Example 52.1. Groovy plugin
build.gradle
apply plugin: 'groovy'
Note: The code for this example can be found at samples/groovy/quickstart
in the ‘-all’ distribution of Gradle.
This will also apply the Java plugin to the project, if it has not already been applied. The Groovy plugin
extends the compile
task to look for source files in directory
src/main/groovy
, and the compileTest
task to look for test source
files in directory src/test/groovy
. The compile tasks use joint compilation for these
directories, which means they can contain a mixture of Java and Groovy source files.
To use the Groovy compilation tasks, you must also declare the Groovy version to use and where to find the
Groovy libraries. You do this by adding a dependency to the groovy
configuration.
The compile
configuration inherits this dependency, so the Groovy libraries will
be included in classpath when compiling Groovy and Java source. For our sample, we will use Groovy 2.2.0
from the public Maven repository:
Example 52.2. Dependency on Groovy
build.gradle
repositories {
mavenCentral()
}
dependencies {
compile 'org.codehaus.groovy:groovy-all:2.4.4'
}
Here is our complete build file:
Example 52.3. Groovy example - complete build file
build.gradle
apply plugin: 'eclipse' apply plugin: 'groovy' repositories { mavenCentral() } dependencies { compile 'org.codehaus.groovy:groovy-all:2.4.4' testCompile 'junit:junit:4.12' }
Running gradle build
will compile, test and JAR your project.
This chapter describes a very simple Groovy project. Usually, a real project will require more than this. Because a Groovy project is a Java project, whatever you can do with a Java project, you can also do with a Groovy project.
You can find out more about the Groovy plugin in Chapter 53, The Groovy Plugin, and you can find more
sample Groovy projects in the samples/groovy
directory in the Gradle distribution.