Search Gradle plugins

dev.sigstore.sign-base

The plugin provides tasks and configurations so you can wire your own Sigstore signing. If you want sign everything with standard configuration, then consider dev.sigstore.sign plugin instead

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

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

Version 1.2.0 (latest)

Created 04 December 2024.

The plugin provides tasks and configurations so you can wire your own Sigstore signing. If you want sign everything with standard configuration, then consider dev.sigstore.sign plugin instead

Add this plugin to your build using the plugins DSL:

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

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