Search Gradle plugins

Version 2.2.1 (latest)

Created 02 April 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("nebula.nebula-project") version "2.2.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "nebula.nebula-project" version "2.2.1"
}

Using legacy plugin application:

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

apply plugin: "nebula.nebula-project"

Learn how to apply plugins to subprojects