org.gradle.api.tasks.scala
Class ScalaCompile

java.lang.Object
  extended by org.gradle.api.internal.AbstractTask
      extended by org.gradle.api.DefaultTask
          extended by org.gradle.api.internal.ConventionTask
              extended by org.gradle.api.tasks.SourceTask
                  extended by org.gradle.api.tasks.compile.AbstractCompile
                      extended by org.gradle.api.tasks.scala.ScalaCompile
All Implemented Interfaces:
Comparable<Task>, org.gradle.api.internal.DynamicObjectAware, org.gradle.api.internal.IConventionAware, org.gradle.api.internal.TaskInternal, Task, PatternFilterable, org.gradle.util.Configurable<Task>

public class ScalaCompile
extends AbstractCompile

Compiles Scala source files, and optionally, Java source files.


Field Summary
 
Fields inherited from interface org.gradle.api.Task
TASK_ACTION, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
 
Constructor Summary
ScalaCompile()
           
 
Method Summary
protected  void compile()
           
 org.gradle.api.internal.tasks.scala.ScalaJavaJointCompiler getCompiler()
           
 org.gradle.api.tasks.compile.CompileOptions getOptions()
          Returns the Java compilation options.
 FileCollection getScalaClasspath()
          Returns the classpath to use to load the Scala compiler.
 org.gradle.api.tasks.scala.ScalaCompileOptions getScalaCompileOptions()
          Returns the Scala compilation options.
 void setCompiler(org.gradle.api.internal.tasks.scala.ScalaJavaJointCompiler compiler)
           
 void setScalaClasspath(FileCollection scalaClasspath)
           
 
Methods inherited from class org.gradle.api.tasks.compile.AbstractCompile
getClasspath, getDestinationDir, getSourceCompatibility, getTargetCompatibility, setClasspath, setDestinationDir, setSourceCompatibility, setTargetCompatibility
 
Methods inherited from class org.gradle.api.tasks.SourceTask
exclude, exclude, exclude, exclude, getDefaultSource, getExcludes, getIncludes, getSource, include, include, include, include, setExcludes, setIncludes, setSource, source
 
Methods inherited from class org.gradle.api.internal.ConventionTask
conventionMapping, getConventionMapping, setConventionMapping
 
Methods inherited from class org.gradle.api.internal.AbstractTask
addValidator, captureStandardOutput, compareTo, configure, deleteAllActions, dependsOn, dependsOnTaskDidWork, disableStandardOutputCapture, doFirst, doFirst, doLast, doLast, execute, getActions, getAdditionalProperties, getAnt, getAsDynamicObject, getConvention, getDependsOn, getDescription, getDidWork, getDynamicObjectHelper, getEnabled, getExecuter, getGroup, getInputs, getLogger, getLogging, getName, getOnlyIf, getOutputs, getPath, getProject, getServices, getStandardOutputCapture, getState, getTaskDependencies, getTemporaryDir, getValidators, hasProperty, injectIntoNewInstance, isEnabled, leftShift, onlyIf, onlyIf, property, setActions, setConvention, setDependsOn, setDescription, setDidWork, setEnabled, setExecuter, setGroup, setName, setOnlyIf, setOnlyIf, setProject, setProperty, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ScalaCompile

public ScalaCompile()
Method Detail

getScalaClasspath

public FileCollection getScalaClasspath()
Returns the classpath to use to load the Scala compiler.


setScalaClasspath

public void setScalaClasspath(FileCollection scalaClasspath)

getCompiler

public org.gradle.api.internal.tasks.scala.ScalaJavaJointCompiler getCompiler()

setCompiler

public void setCompiler(org.gradle.api.internal.tasks.scala.ScalaJavaJointCompiler compiler)

getScalaCompileOptions

public org.gradle.api.tasks.scala.ScalaCompileOptions getScalaCompileOptions()
Returns the Scala compilation options.


getOptions

public org.gradle.api.tasks.compile.CompileOptions getOptions()
Returns the Java compilation options.


compile

protected void compile()
Specified by:
compile in class AbstractCompile