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.0.96"
}

See also:

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