Search Gradle plugins

nu.studer.plugindev

Gradle plugin that facilitates the bundling and publishing of Gradle plugins as expected by the Gradle Plugin Portal, JCenter, and MavenCentral.

https://github.com/etiennestuder/gradle-plugindev-plugin

Using the plugins DSL:

plugins {
  id("nu.studer.plugindev") version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("nu.studer:gradle-plugindev-plugin:1.0.6")
  }
}

apply(plugin = "nu.studer.plugindev")

Using the plugins DSL:

plugins {
  id "nu.studer.plugindev" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "nu.studer:gradle-plugindev-plugin:1.0.6"
  }
}

apply plugin: "nu.studer.plugindev"

Learn how to apply plugins to subprojects