Search Gradle plugins

com.zegreatrob.tools.certifier

This plugin assists in the installation of certificates into JDKs with Java Keytool.

https://github.com/robertfmurdock/ze-great-tools

Sources: https://github.com/robertfmurdock/ze-great-tools

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.zegreatrob.tools.certifier") version "1.5.32"
}

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