public interface TaskDestroyables
Task
destroys (removes).Modifier and Type | Method and Description |
---|---|
void |
file(Object path)
Deprecated.
Use
register(Object...) instead. |
void |
files(Object... paths)
Deprecated.
Use
register(Object...) instead. |
void |
register(Object... paths)
Registers files or directories that this task destroys.
|
void register(Object... paths)
paths
- The files or directories that will be destroyed. The given paths are evaluated as per Project.files(Object...)
.@Deprecated void files(Object... paths)
register(Object...)
instead.paths
- The files that will be destroyed. The given paths are evaluated as per Project.files(Object...)
.@Deprecated void file(Object path)
register(Object...)
instead.path
- A file that will be destroyed. The given path is evaluated as per Project.files(Object...)
.