Search Gradle plugins

Version 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"

Learn how to apply plugins to subprojects