Search Gradle plugins

Version 1.2.0

1.2.0

Created 07 April 2023.

- Add `--validate-only` option to `publishPlugins` task to get feedback from server-side plugin validation without actually publishing. - Add support for publishing `*.sigstore` bundle files as an alternate signing solution. - Fix integration with Shadow plugin that causes JAR manifest to contain Gradle API jars.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.gradle.plugin-publish") version "1.2.0"
}

See also:

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