Managed Type
Marks types that can be instantiated by Gradle via the managed object infrastructure.
Types annotated with this annotation will be automatically instantiated by Gradle when constructing managed objects. To create a managed property, declare an abstract getter method for the given type. For the managed property to be created properly, the object containing it must be instantiated using the newInstance or as a managed org.gradle.api.tasks.Nested property. The example below creates a ConfigurableFileCollection
and RegularFileProperty
automatically when the MyObject
instance is instantiated by Gradle:
interface NestedExample {
Property<String> getExampleMessage();
}
interface MyObject {
ConfigurableFileCollection getFiles();
RegularFileProperty getProperty();
@Nested
NestedExample getNested();
}
def instance = objects.newInstance(MyObject)
instance.files.from(file("foo.txt"))
instance.property = file("bar.txt")
instance.nested.exampleMessage = "Hello, World!"
Content copied to clipboard
Since
9.0.0