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
Version 1.1.0 (latest)
Created 13 June 2022.
The plugin that allows you access to java keytool commands in gradle as task
Using the plugins DSL:
plugins {
id("xyz.ronella.simple-keytool") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.ronella.gradle.plugin:simple-keytool:1.1.0")
}
}
apply(plugin = "xyz.ronella.simple-keytool")
Using the plugins DSL:
plugins {
id "xyz.ronella.simple-keytool" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.ronella.gradle.plugin:simple-keytool:1.1.0"
}
}
apply plugin: "xyz.ronella.simple-keytool"