Search Gradle plugins

Version 1.5.1 (latest)

Created 13 May 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.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:gradle-resolution-rules-plugin:1.5.1")
  }
}

apply(plugin = "nebula.resolution-rules-producer")

Using the plugins DSL:

plugins {
  id "nebula.resolution-rules-producer" version "1.5.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:gradle-resolution-rules-plugin:1.5.1"
  }
}

apply plugin: "nebula.resolution-rules-producer"

Learn how to apply plugins to subprojects