Search Gradle plugins

Version 4.0.1 (latest)

Created 05 February 2016.

Release opinions on top of gradle-git

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "nebula.nebula-release"

Learn how to apply plugins to subprojects