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

Version 4.1 (latest)

Created 13 September 2021.

Gradle plugin that facilitates the bundling of Gradle plugins as expected by the Gradle Plugin Portal.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("nu.studer.plugindev:nu.studer.plugindev.gradle.plugin:4.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("nu.studer.plugindev")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("nu.studer.plugindev:nu.studer.plugindev.gradle.plugin:4.1")
      }
    }
    
    apply(plugin = "nu.studer.plugindev")
  • Applying plugins to all subprojects .