cn.hanlyjiang.gradle.analysis
Owner: HanlyJiang
Export Project's all denpendencis to an excel file.
https://github.com/hanlyjiang/dependencies-export-gradle-plugin/README.md
Sources: https://github.com/hanlyjiang/dependencies-export-gradle-plugin
Version 0.0.2 (latest)
Created 15 July 2019.
Export Project's all denpendencis to an excel file.
Add this plugin to your build using the plugins DSL:
plugins {
id("cn.hanlyjiang.gradle.analysis") version "0.0.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("cn.hanlyjiang.gradle.analysis:cn.hanlyjiang.gradle.analysis.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("cn.hanlyjiang.gradle.analysis") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cn.hanlyjiang.gradle.analysis:cn.hanlyjiang.gradle.analysis.gradle.plugin:0.0.2") } } apply(plugin = "cn.hanlyjiang.gradle.analysis")
- Applying plugins to all subprojects .