Package org.gradle.api.tasks
Annotation Type Input
Attached to a task property to indicate that the property specifies some input value for the task.
This annotation should be attached to the getter method in Java or the property in Groovy. Annotations on setters or just the field in Java are ignored.
This will cause the task to be considered out-of-date when the property has changed.
This annotation cannot be used on a File
object. If you want to refer to the file path,
independently of its contents, return a String
instead which returns the absolute
path.
If, instead, you want to refer to the contents and path of a file or a directory, use
InputFile
or InputDirectory
respectively.