nebula.resolution-rules-producer
Owner: Nebula Plugins
Produces a resolution rules file tp be consumed by 'nebula.resolution-rules'
https://github.com/nebula-plugins/gradle-resolution-rules-plugin
Sources: https://github.com/nebula-plugins/gradle-resolution-rules-plugin.git
Version 1.1.5
1.1.5
Created 31 March 2016.
Produces a resolution rules file to be consumed by 'nebula.resolution-rules'
Using the plugins DSL:
plugins {
id("nebula.resolution-rules-producer") version "1.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-resolution-rules-plugin:1.1.5")
}
}
apply(plugin = "nebula.resolution-rules-producer")
Using the plugins DSL:
plugins {
id "nebula.resolution-rules-producer" version "1.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-resolution-rules-plugin:1.1.5"
}
}
apply plugin: "nebula.resolution-rules-producer"