Search Gradle plugins

Version 0.0.1 (latest)

0.0.1

Created 11 February 2021.

Plugin that does nothing

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:nebula-sample-plugin:0.0.1")
      }
    }
    
    apply(plugin = "nebula.sample-plugin")
  • Applying plugins to all subprojects .