Package org.gradle.api.tasks.scala
Class ScalaDoc
java.lang.Object
org.gradle.api.internal.AbstractTask
org.gradle.api.DefaultTask
org.gradle.api.internal.ConventionTask
org.gradle.api.tasks.SourceTask
org.gradle.api.tasks.scala.ScalaDoc
- All Implemented Interfaces:
Comparable<Task>
,org.gradle.api.internal.DynamicObjectAware
,org.gradle.api.internal.IConventionAware
,org.gradle.api.internal.TaskInternal
,Named
,ExtensionAware
,Task
,PatternFilterable
,Configurable<Task>
Generates HTML API documentation for Scala source files.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gradle.api.Task
Task.Namer
-
Field Summary
Fields inherited from interface org.gradle.api.Task
TASK_ACTION, TASK_CONSTRUCTOR_ARGS, TASK_DEPENDS_ON, TASK_DESCRIPTION, TASK_GROUP, TASK_NAME, TASK_OVERWRITE, TASK_TYPE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
generate()
protected abstract org.gradle.api.internal.project.IsolatedAntBuilder
Returns the classpath to use to locate classes referenced by the documented source.Returns the compilation outputs produced by the sources that are generating Scaladoc.Returns the directory to generate the API documentation into.protected FileTree
Returns the compilation outputs needed by Scaladoc filtered to include TASTy files.A JavaLauncher used to run the Scaladoc tool.protected abstract JavaToolchainService
Returns the amount of memory allocated to this task.protected abstract ObjectFactory
Returns the classpath to use to load the ScalaDoc tool.Returns the ScalaDoc generation options.Returns the source for this task, after the include and exclude patterns have been applied.getTitle()
Returns the documentation title.protected abstract WorkerExecutor
void
scalaDocOptions
(Action<? super ScalaDocOptions> action) Configures the ScalaDoc generation options.void
setClasspath
(FileCollection classpath) void
setDestinationDir
(File destinationDir) void
setScalaClasspath
(FileCollection scalaClasspath) void
setScalaDocOptions
(ScalaDocOptions scalaDocOptions) Deprecated.Setting a new instance of this property is unnecessary.void
Methods inherited from class org.gradle.api.tasks.SourceTask
exclude, exclude, exclude, exclude, getExcludes, getIncludes, getPatternSet, getPatternSetFactory, include, include, include, include, setExcludes, setIncludes, setSource, setSource, source
Methods inherited from class org.gradle.api.internal.ConventionTask
conventionMapping, conventionMapping, getConventionMapping
Methods inherited from class org.gradle.api.DefaultTask
compareTo, configure, dependsOn, doFirst, doFirst, doFirst, doLast, doLast, doLast, finalizedBy, getActions, getAnt, getDependsOn, getDescription, getDestroyables, getDidWork, getEnabled, getExtensions, getFinalizedBy, getGroup, getInputs, getLocalState, getLogger, getLogging, getMustRunAfter, getName, getOutputs, getPath, getProject, getShouldRunAfter, getState, getTaskDependencies, getTemporaryDir, getTimeout, hasProperty, mustRunAfter, onlyIf, onlyIf, onlyIf, property, setActions, setDependsOn, setDescription, setDidWork, setEnabled, setFinalizedBy, setGroup, setMustRunAfter, setOnlyIf, setOnlyIf, setOnlyIf, setProperty, setShouldRunAfter, shouldRunAfter, usesService
Methods inherited from class org.gradle.api.internal.AbstractTask
acceptServiceReferences, appendParallelSafeAction, doNotTrackState, getAsDynamicObject, getConvention, getIdentityPath, getImpliesSubProjects, getLifecycleDependencies, getOnlyIf, getReasonNotToTrackState, getReasonTaskIsIncompatibleWithConfigurationCache, getRequiredServices, getServices, getSharedResources, getStandardOutputCapture, getTaskActions, getTaskIdentity, getTemporaryDirFactory, hasTaskActions, injectIntoNewInstance, isCompatibleWithConfigurationCache, isEnabled, isHasCustomActions, notCompatibleWithConfigurationCache, prependParallelSafeAction, setImpliesSubProjects
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.gradle.api.Task
doNotTrackState, getConvention, notCompatibleWithConfigurationCache
-
Constructor Details
-
ScalaDoc
public ScalaDoc()
-
-
Method Details
-
getDestinationDir
Returns the directory to generate the API documentation into. -
setDestinationDir
-
getSource
Returns the source for this task, after the include and exclude patterns have been applied. Ignores source files which do not exist.The
PathSensitivity
for the sources is configured to bePathSensitivity.RELATIVE
.- Overrides:
getSource
in classSourceTask
- Returns:
- The source.
-
getFilteredCompilationOutputs
@InputFiles @IgnoreEmptyDirectories @PathSensitive(RELATIVE) protected FileTree getFilteredCompilationOutputs()Returns the compilation outputs needed by Scaladoc filtered to include TASTy files.NOTE: This is only useful with Scala 3 or later. Scala 2 only processes source files.
- Returns:
- the compilation outputs produced from the sources
- Since:
- 7.3
-
getCompilationOutputs
Returns the compilation outputs produced by the sources that are generating Scaladoc.- Returns:
- the compilation outputs produced from the sources
- Since:
- 7.3
-
getClasspath
Returns the classpath to use to locate classes referenced by the documented source.
- Returns:
- The classpath.
-
setClasspath
-
getScalaClasspath
Returns the classpath to use to load the ScalaDoc tool. -
setScalaClasspath
-
getScalaDocOptions
Returns the ScalaDoc generation options. -
setScalaDocOptions
Deprecated.Setting a new instance of this property is unnecessary. This method will be removed in Gradle 9.0. UsescalaDocOptions(Action)
instead.Sets the ScalaDoc generation options. -
scalaDocOptions
Configures the ScalaDoc generation options.- Since:
- 8.11
-
getTitle
Returns the documentation title. -
setTitle
-
getMaxMemory
Returns the amount of memory allocated to this task. Ex. 512m, 1G- Since:
- 6.5
-
getJavaLauncher
A JavaLauncher used to run the Scaladoc tool.- Since:
- 7.2
-
generate
protected void generate() -
getObjectFactory
-
getAntBuilder
@Inject protected abstract org.gradle.api.internal.project.IsolatedAntBuilder getAntBuilder() -
getWorkerExecutor
-
getJavaToolchainService
-