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