Search code examples
gradle

How to list available plugins in Gradle


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?


Solution

  • There's no such task that lists all the plugins applied to project. However this method may be helpful.

    project.plugins.each {
       println it
    }