Search Gradle plugins

Version 20.3.0

Created 05 January 2023.

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 "20.3.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects