Search Gradle plugins

Version 2.2.6

Created 18 June 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("nebula.nebula-release") version "2.2.6"
}

Using legacy plugin application:

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

apply(plugin = "nebula.nebula-release")

Using the plugins DSL:

plugins {
  id "nebula.nebula-release" version "2.2.6"
}

Using legacy plugin application:

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

apply plugin: "nebula.nebula-release"

Learn how to apply plugins to subprojects