Search Gradle plugins

Using the plugins DSL:

plugins {
  id("nebula.project") version "3.0.4"
}

Using legacy plugin application:

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

apply(plugin = "nebula.project")

Using the plugins DSL:

plugins {
  id "nebula.project" version "3.0.4"
}

Using legacy plugin application:

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

apply plugin: "nebula.project"

Learn how to apply plugins to subprojects