nu.studer.plugindev
Owner: Etienne Studer
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
Version 4.1 (latest)
4.1
Created 13 September 2021.
Gradle plugin that facilitates the bundling of Gradle plugins as expected by the Gradle Plugin Portal.
Using the plugins DSL:
plugins {
id("nu.studer.plugindev") version "4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("nu.studer:gradle-plugindev-plugin:4.1")
}
}
apply(plugin = "nu.studer.plugindev")
Using the plugins DSL:
plugins {
id "nu.studer.plugindev" version "4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "nu.studer:gradle-plugindev-plugin:4.1"
}
}
apply plugin: "nu.studer.plugindev"