Package org.gradle.api.tasks
Interface TaskDestroyables
-
public interface TaskDestroyables
Represents the files or directories that aTask
destroys (removes).- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
register(java.lang.Object... paths)
Registers files or directories that this task destroys.
-
-
-
Method Detail
-
register
void register(java.lang.Object... paths)
Registers files or directories that this task destroys.- Parameters:
paths
- The files or directories that will be destroyed. The given paths are evaluated as perProject.files(Object...)
.- Since:
- 4.3
-
-