How to list available plugins in Gradle -


is there way list available plugins in gradle? gradle tasks --all plugins? if not, how plugins gradle project model?

there's no such task lists plugins applied project. this method may helpful.

project.plugins.each {    println } 

Comments