com.whl.dependencies-view
Owner: 汪海游龙
Simple View Your Project Dependencies
Sources: http://www.github.com/81813780
Version 0.1.4-SNAPSHOT (latest)
Created 03 February 2019.
Simple View Your Project Dependency
Add this plugin to your build using the plugins DSL:
plugins {
id("com.whl.dependencies-view") version "0.1.4-SNAPSHOT"
}
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("com.whl.dependencies-view:com.whl.dependencies-view.gradle.plugin:0.1.4-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("com.whl.dependencies-view") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.whl.dependencies-view:com.whl.dependencies-view.gradle.plugin:0.1.4-SNAPSHOT") } } apply(plugin = "com.whl.dependencies-view")
- Applying plugins to all subprojects .