A ConfigurableFileCollection
is a mutable FileCollection
.
You can obtain an instance of ConfigurableFileCollection
by calling Project.files
Type | Name and description |
---|---|
ConfigurableFileCollection |
builtBy(Object... tasks) Registers some tasks which build the files of this collection. |
ConfigurableFileCollection |
from(Object... paths) Adds a set of source paths to this collection. |
Set<Object> |
getBuiltBy() Returns the set of tasks which build the files of this collection. |
Set<Object> |
getFrom() Returns the set of source paths for this collection. |
ConfigurableFileCollection |
setBuiltBy(Iterable<?> tasks) Sets the tasks which build the files of this collection. |
void |
setFrom(Iterable<?> paths) Sets the source paths for this collection. |
void |
setFrom(Object... paths) Sets the source paths for this collection. |
Methods inherited from class | Name |
---|---|
interface FileCollection |
add, addToAntBuilder, addToAntBuilder, asType, contains, filter, filter, getAsFileTree, getAsPath, getFiles, getSingleFile, isEmpty, minus, plus, stopExecutionIfEmpty |
interface Buildable |
getBuildDependencies |
interface Iterable |
iterator |
interface AntBuilderAware |
addToAntBuilder |
Registers some tasks which build the files of this collection.
tasks
- The tasks. These are evaluated as per Task.dependsOn.Adds a set of source paths to this collection. The given paths are evaluated as per Project.files.
paths
- The files to add.Returns the set of tasks which build the files of this collection.
Returns the set of source paths for this collection. The paths are evaluated as per Project.files.
Sets the tasks which build the files of this collection.
tasks
- The tasks. These are evaluated as per Task.dependsOn.Sets the source paths for this collection. The given paths are evaluated as per Project.files.
paths
- The paths.Sets the source paths for this collection. The given paths are evaluated as per Project.files.
paths
- The paths.