Interface KotlinCompilationOutput
-
- All Implemented Interfaces:
public interface KotlinCompilationOutput
Represents the outputs of a Kotlin source set compilation.
-
-
Method Summary
Modifier and Type Method Description abstract File
getResourcesDir()
The directory where the resources are located. abstract ConfigurableFileCollection
getClassesDirs()
The collection of directories where the compiled code is located. abstract FileCollection
getAllOutputs()
The collection of all output directories produced by the compilation. -
-
Method Detail
-
getResourcesDir
abstract File getResourcesDir()
The directory where the resources are located.
-
getClassesDirs
abstract ConfigurableFileCollection getClassesDirs()
The collection of directories where the compiled code is located.
For example, in the case of JVM target compilation, this will be directories containing class files for Java and Kotlin sources compilations.
-
getAllOutputs
abstract FileCollection getAllOutputs()
The collection of all output directories produced by the compilation.
Usually combines all output directories from classesDirs and resourcesDir.
-
-
-
-