-
- All Implemented Interfaces:
-
kotlin.Comparable,org.gradle.api.Task,org.gradle.api.plugins.ExtensionAware
public interface BaseKapt implements Task
-
-
Method Summary
Modifier and Type Method Description abstract ConfigurableFileCollectiongetKaptExternalClasspath()abstract ListProperty<String>getKaptClasspathConfigurationNames()abstract DirectoryPropertygetIncAptCache()Output directory that contains caches necessary to support incremental annotation processing. abstract DirectoryPropertygetClassesDir()abstract DirectoryPropertygetDestinationDir()abstract DirectoryPropertygetKotlinSourcesDestinationDir()Used in the model builder only. abstract List<Object>getAnnotationProcessorOptionProviders()abstract DirectoryPropertygetStubsDir()abstract ConfigurableFileCollectiongetKaptClasspath()abstract ConfigurableFileCollectiongetCompiledSources()abstract ConfigurableFileCollectiongetClasspath()abstract Property<String>getSourceSetName()Needed for the model builder. abstract ConfigurableFileCollectiongetSource()abstract Property<Boolean>getIncludeCompileClasspath()abstract Property<String>getDefaultJavaSourceCompatibility()-
Methods inherited from class org.gradle.api.Task
compareTo, getExtensions -
Methods inherited from class org.jetbrains.kotlin.gradle.tasks.BaseKapt
configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getConvention, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getFinalizedBy, getGroup, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOutputs, getPath, getProject, getShouldRunAfter, getState, getTaskDependencies, getTemporaryDir, getTimeout, hasProperty, mustRunAfter, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setMustRunAfter, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, usesService -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getKaptExternalClasspath
@Classpath() abstract ConfigurableFileCollection getKaptExternalClasspath()
-
getKaptClasspathConfigurationNames
@Internal() abstract ListProperty<String> getKaptClasspathConfigurationNames()
-
getIncAptCache
@LocalState() abstract DirectoryProperty getIncAptCache()
Output directory that contains caches necessary to support incremental annotation processing.
-
getClassesDir
@OutputDirectory() abstract DirectoryProperty getClassesDir()
-
getDestinationDir
@OutputDirectory() abstract DirectoryProperty getDestinationDir()
-
getKotlinSourcesDestinationDir
@OutputDirectory() abstract DirectoryProperty getKotlinSourcesDestinationDir()
Used in the model builder only.
-
getAnnotationProcessorOptionProviders
abstract List<Object> getAnnotationProcessorOptionProviders()
-
getStubsDir
@Internal() abstract DirectoryProperty getStubsDir()
-
getKaptClasspath
@Classpath() abstract ConfigurableFileCollection getKaptClasspath()
-
getCompiledSources
@Internal() abstract ConfigurableFileCollection getCompiledSources()
-
getClasspath
@Internal(value = "Task implementation adds correct input annotation.") abstract ConfigurableFileCollection getClasspath()
-
getSourceSetName
@Internal() abstract Property<String> getSourceSetName()
Needed for the model builder.
-
getSource
@InputFiles()@IgnoreEmptyDirectories()@Incremental()@PathSensitive(value = PathSensitivity.RELATIVE) abstract ConfigurableFileCollection getSource()
-
getIncludeCompileClasspath
@Input() abstract Property<Boolean> getIncludeCompileClasspath()
-
getDefaultJavaSourceCompatibility
@Internal(value = "Used to compute javac option.") abstract Property<String> getDefaultJavaSourceCompatibility()
-
-
-
-