Search Gradle plugins

Version 3.1.2

Created 08 January 2016.

Release opinions on top of gradle-git

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "nebula.nebula-release"

Learn how to apply plugins to subprojects