nebula.dependency-base
Owner: Nebula Plugins
A base plugin to improve dependency insight and handle all dependency applies
https://github.com/nebula-plugins/nebula-dependency-base-plugin
Sources: https://github.com/nebula-plugins/nebula-dependency-base-plugin.git
Version 0.2.1
0.2.1
Created 22 March 2017.
A base plugin to improve dependency insight and handle all dependency applies
Using the plugins DSL:
plugins {
id("nebula.dependency-base") version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:nebula-dependency-base-plugin:0.2.1")
}
}
apply(plugin = "nebula.dependency-base")
Using the plugins DSL:
plugins {
id "nebula.dependency-base" version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:nebula-dependency-base-plugin:0.2.1"
}
}
apply plugin: "nebula.dependency-base"