Search Gradle plugins

Version 1.5.1 (latest)

1.5.1

Created 13 May 2016.

Produces a resolution rules file to be consumed by 'nebula.resolution-rules'

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:gradle-resolution-rules-plugin:1.5.1")
      }
    }
    
    apply(plugin = "nebula.resolution-rules-producer")
  • Applying plugins to all subprojects .