Search Gradle plugins

Version 2.11.5 (latest)

Created 05 April 2024.

Another plugin that does nothing

Using the plugins DSL:

plugins {
  id("com.netflix.nebula.more-nothing-plugin") version "2.11.5"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.netflix.nebula.more-nothing-plugin" version "2.11.5"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects