com.whl.dependencies-view
Owner: 汪海游龙
Simple View Your Project Dependencies
Sources: http://www.github.com/81813780
Version 0.1.4-SNAPSHOT (latest)
0.1.4-SNAPSHOT
Created 03 February 2019.
Simple View Your Project Dependency
Using the plugins DSL:
plugins {
id("com.whl.dependencies-view") version "0.1.4-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.whl:dependencies-view:0.1.4-SNAPSHOT")
}
}
apply(plugin = "com.whl.dependencies-view")
Using the plugins DSL:
plugins {
id "com.whl.dependencies-view" version "0.1.4-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.whl:dependencies-view:0.1.4-SNAPSHOT"
}
}
apply plugin: "com.whl.dependencies-view"