can fields that have the @Option annotation be abs...
# plugin-development
c
can fields that have the @Option annotation be abstract? for example in `Test`I see this:
Copy code
@Incubating
    @Input
    @Option(option = "test-dry-run", description = "Simulate test execution.")
    public abstract Property<Boolean> getDryRun();
1
c
Yes.
c
and then I can just make the whole task class abstract and it will just work?
c
Yep. Gradle provides a concert subclass / properties as required.
c
is that documented somewhere?
c
*concrete
I think so, let me see if we can find the docs…
c
perfect, thanks!