Is there any way to list available plugins in gradle? Like gradle tasks --all
for plugins? If not, how do I get plugins from gradle project model?
There's no such task that lists all the plugins applied to project. However this method may be helpful.
project.plugins.each {
println it
}