Search Gradle plugins

Version 19.0.1

Created 11 October 2022.

Sets up publishing and release process for all of the other nebula plugins

Using the plugins DSL:

plugins {
  id("com.netflix.nebula.plugin-plugin") version "19.0.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.netflix.nebula.plugin-plugin" version "19.0.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects