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

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -