Groovy Documentation

org.gradle.api.tasks
[Java] Class GradleBuild

java.lang.Object
  org.gradle.api.internal.ConventionTask
      org.gradle.api.tasks.GradleBuild

public class GradleBuild
extends ConventionTask

Executes a Gradle build.


Constructor Summary
GradleBuild()

 
Method Summary
java.io.File getBuildFile()

Returns the build file that should be used for this build.

java.io.File getDir()

Returns the project directory for the build.

StartParameter getStartParameter()

Returns the full set of parameters that will be used to execute the build.

java.util.List getTasks()

Returns the sequence of tasks that should be executed for this build.

void setBuildFile(java.lang.Object file)

Sets the build file that should be used for this build.

void setDir(java.lang.Object dir)

Sets the project directory for the build.

void setStartParameter(StartParameter startParameter)

Sets the full set of parameters that will be used to execute the build.

void setTasks(java.util.Collection tasks)

Sets the tasks that should be executed for this build.

 

Constructor Detail

GradleBuild

public GradleBuild()


 
Method Detail

getBuildFile

public java.io.File getBuildFile()
Returns the build file that should be used for this build.
Returns:
The build file. May be null.


getDir

public java.io.File getDir()
Returns the project directory for the build.
Returns:
The project directory. Never returns null.


getStartParameter

public StartParameter getStartParameter()
Returns the full set of parameters that will be used to execute the build.
Returns:
the parameters. Never returns null.


getTasks

public java.util.List getTasks()
Returns the sequence of tasks that should be executed for this build.
Returns:
The sequence. May be empty. Never returns null.


setBuildFile

public void setBuildFile(java.lang.Object file)
Sets the build file that should be used for this build.
Parameters:
file - The build file. May be null to use the default build file for the build.


setDir

public void setDir(java.lang.Object dir)
Sets the project directory for the build.
Parameters:
dir - The project directory. Should not be null.


setStartParameter

public void setStartParameter(StartParameter startParameter)
Sets the full set of parameters that will be used to execute the build.
Parameters:
startParameter - the parameters. Should not be null.


setTasks

public void setTasks(java.util.Collection tasks)
Sets the tasks that should be executed for this build.
Parameters:
tasks - The task names. May be empty or null to use the default tasks for the build.


 

Groovy Documentation