Table of Contents
API Documentation: | AntlrSourceDirectorySet |
---|
Contract for a Gradle extension that acts as a handler for what I call a virtual directory mapping,
injecting a virtual directory named 'antlr' into the project's various SourceSet
.
Property | Description |
classesDirectory | The directory property that is bound to the task that produces the output via |
destinationDirectory | Configure the directory to assemble the compiled classes into. |
filter | The filter used to select the source from the source directories. These filter patterns are applied after
the include and exclude patterns of this source directory set. Generally, the filter patterns are used to
restrict the contents to certain types of files, eg |
srcDirs | The source directories that make up this set. |
Method | Description |
compiledBy(taskProvider, mapping) | Define the task responsible for processing the source. |
source(source) | Adds the given source to this set. |
srcDir(srcPath) | Adds the given source directory to this set. The given directory does not need to exist. Directories that do not exist are ignored. |
srcDirs(srcPaths) | Adds the given source directories to this set. The given directories do not need to exist. Directories that do not exist are ignored. |
The directory property that is bound to the task that produces the output via SourceDirectorySet.compiledBy(org.gradle.api.tasks.TaskProvider, java.util.function.Function)
.
Use this as part of a classpath or input to another task to ensure that the output is created before it is used.
Note: To define the path of the output folder use SourceDirectorySet.getDestinationDirectory()
- Default with
java-base
plugin: ${project.layout.buildDirectory}
/classes/${sourceDirectorySet.name}
/${sourceSet.name}
Configure the directory to assemble the compiled classes into.
- Default with
java-base
plugin: ${project.layout.buildDirectory}
/classes/${sourceDirectorySet.name}
/${sourceSet.name}
The filter used to select the source from the source directories. These filter patterns are applied after
the include and exclude patterns of this source directory set. Generally, the filter patterns are used to
restrict the contents to certain types of files, eg *.java
.
The source directories that make up this set.
Note that filtering via patterns using <UNHANDLED-LINK>#exclude(Spec)</UNHANDLED-LINK> and <UNHANDLED-LINK>#include(Spec)</UNHANDLED-LINK> (or any overload of these methods) only
filters files within the DirectoryTree
s returned by this method and does not filter
the set of source directory trees themselves. This result should agree with SourceDirectorySet.getSrcDirTrees()
.
Does not filter source directories that do not exist.
- Default with
java-base
plugin: src/
${sourceSet.name}
/${sourceDirectorySet.name}
Define the task responsible for processing the source.
Adds the given source to this set.
Adds the given source directory to this set. The given directory does not need to exist. Directories that do not exist are ignored.
Adds the given source directories to this set. The given directories do not need to exist. Directories that do not exist are ignored.