Package org.gradle.api.tasks.scala
Class IncrementalCompileOptions
- java.lang.Object
-
- org.gradle.api.tasks.scala.IncrementalCompileOptions
-
public class IncrementalCompileOptions extends Object
Options for incremental compilation of Scala code. Only used for compilation with Zinc. This is not sent to the compiler daemon as options.
-
-
Constructor Summary
Constructors Constructor Description IncrementalCompileOptions(ObjectFactory objectFactory)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegularFilePropertygetAnalysisFile()Returns the file path where results of code analysis are to be stored.RegularFilePropertygetPublishedCode()Returns the directory or archive path by which the code produced by this task is published to otherScalaCompiletasks.
-
-
-
Constructor Detail
-
IncrementalCompileOptions
@Inject public IncrementalCompileOptions(ObjectFactory objectFactory)
-
-
Method Detail
-
getAnalysisFile
@LocalState public RegularFileProperty getAnalysisFile()
Returns the file path where results of code analysis are to be stored.
-
getPublishedCode
@Internal public RegularFileProperty getPublishedCode()
Returns the directory or archive path by which the code produced by this task is published to otherScalaCompiletasks.
-
-