Search Gradle plugins

Version 2.10.1

2.10.1

Created 19 July 2024.

Another plugin that does nothing

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects