Search Gradle plugins

Version 1.1.0 (latest)

1.1.0

Created 13 June 2022.

The plugin that allows you access to java keytool commands in gradle as task

Add this plugin to your build using the plugins DSL:

plugins {
  id("xyz.ronella.simple-keytool") version "1.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.ronella.gradle.plugin:simple-keytool:1.1.0")
      }
    }
    
    apply(plugin = "xyz.ronella.simple-keytool")
  • Applying plugins to all subprojects .