Search Gradle plugins

nebula.nebula-plugin

Plugin for plugins, heavily opinionated about nebula-plugins

https://github.com/nebula-plugins/nebula-plugin-plugin

Version 2.2.0 (latest)

2.2.0

Created 30 January 2015.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact

Using the plugins DSL:

plugins {
  id("nebula.nebula-plugin") version "2.2.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "nebula.nebula-plugin" version "2.2.0"
}

Using legacy plugin application:

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

apply plugin: "nebula.nebula-plugin"

Learn how to apply plugins to subprojects