Groovy Documentation

org.gradle.api.tasks
[Java] Interface GroovySourceSet


public interface GroovySourceSet

A GroovySourceSetConvention defines the properties and methods added to a SourceSet by the GroovyPlugin.


Method Summary
SourceDirectorySet getAllGroovy()

All Groovy source for this source set.

SourceDirectorySet getGroovy()

Returns the source to be compiled by the Groovy compiler for this source set.

GroovySourceSet groovy(Closure configureClosure)

Configures the Groovy source for this set.

 

Method Detail

getAllGroovy

public SourceDirectorySet getAllGroovy()
All Groovy source for this source set.
Returns:
the Groovy source. Never returns null.


getGroovy

public SourceDirectorySet getGroovy()
Returns the source to be compiled by the Groovy compiler for this source set. Any Java source present in this set will be passed to the Groovy compiler for joint compilation.
Returns:
The Groovy/Java source. Never returns null.


groovy

public GroovySourceSet groovy(Closure configureClosure)
Configures the Groovy source for this set.

The given closure is used to configure the SourceDirectorySet which contains the Groovy source.

Parameters:
configureClosure - The closure to use to configure the Groovy source.
Returns:
this


 

Gradle API 1.8