Search Gradle plugins

Version 1.0.0-rc-3

Created 13 June 2022.

- Raise minimum supported Gradle version to 4.10.3 - Support for publications where files have hash collisions - Auto-apply `java-gradle-plugin` plugin - Auto-apply `maven-publish` plugin (always used for publication metadata generation) - Automate published artifact signing, if the `signing` plugin is applied - Automatically publish the jar produced by the `shadowJar` task, as the main artifact, if the `com.github.johnrengelman.shadow` is applied (requires minimum Gradle version of 6.0.1) - Remove `pluginBundle.plugins` block, use `gradlePlugin.plugins` instead - Add `pluginBundle.pluginTags` map to enable per-plugin tags (for pre Gradle 7.5 versions, where `gradlePlugin.plugins` doesn't yet allow individual tags) - Deprecate the entire `pluginBundle` block when using Gradle version 7.6 or later, mark for removal in version 8.0 - Remove `mavenCoordinates` block, use maven publication GAV instead - Remove `withDependencies` block, set Java component dependencies instead - Remove automatic Groovy docs generation

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gradle.plugin-publish") version "1.0.0-rc-3"
}

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("com.gradle.plugin-publish:com.gradle.plugin-publish.gradle.plugin:1.0.0-rc-3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.gradle.plugin-publish")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.gradle.plugin-publish:com.gradle.plugin-publish.gradle.plugin:1.0.0-rc-3")
      }
    }
    
    apply(plugin = "com.gradle.plugin-publish")
  • Applying plugins to all subprojects .