curious `Plugin<Project>` is a generic, what...
# gradle
x
curious
Plugin<Project>
is a generic, what asside from
Project
can you use on a plugin?
d
Several of Gradle’s internal plugins implement
Plugin<ProjectInternal>
so they can get at their internal protocol for projects
Not aware of any use of that interface outside of project plugins
e
You can also write a
Plugin<Settings>
applied in a settings script. Or a
Plugin<Gradle>
applied in an init script.
👍 1