Search Gradle plugins

dev.sigstore.sign

The plugin signs all artifacts with Sigstore and attaches signature bundles

https://github.com/sigstore/sigstore-java

Sources: https://github.com/sigstore/sigstore-java.git

Version 1.2.0 (latest)

1.2.0

Created 04 December 2024.

The plugin signs all artifacts with Sigstore and attaches signature bundles

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.sigstore.sign") version "1.2.0"
}

See also:

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