Interface KotlinCompilationOutput

  • All Implemented Interfaces:

    
    public interface KotlinCompilationOutput
    
                        

    Represents the outputs of a Kotlin source set compilation.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.