Search Gradle plugins

Version 19.0.6 (latest)

Created 16 February 2024.

Release opinions on top of gradle-git

Using the plugins DSL:

plugins {
  id("com.netflix.nebula.release") version "19.0.6"
}

Using legacy plugin application:

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

apply(plugin = "com.netflix.nebula.release")

Using the plugins DSL:

plugins {
  id "com.netflix.nebula.release" version "19.0.6"
}

Using legacy plugin application:

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

apply plugin: "com.netflix.nebula.release"

Learn how to apply plugins to subprojects