xyz.ronella.simple-keytool
                  Owner:
                  
                    
                    Ronaldo Webb
                  
                
The plugin that allows you access to java keytool commands in gradle as task
https://github.com/rcw3bb/simple-keytool
Sources: https://github.com/rcw3bb/simple-keytool
Version 1.2.0 (latest)
Created 20 September 2025.
                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.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("xyz.ronella.simple-keytool:xyz.ronella.simple-keytool.gradle.plugin:1.2.0") }It can then be applied in the precompiled script plugin:plugins { id("xyz.ronella.simple-keytool") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.ronella.simple-keytool:xyz.ronella.simple-keytool.gradle.plugin:1.2.0") } } apply(plugin = "xyz.ronella.simple-keytool") - Applying plugins to all subprojects .