io.forgo.keystoreplugin
Owner: Elliott
Plugin to simplify creation of JKS keystores via a key, cert, and an intermediate PKCS12 keystore.
https://github.com/forgo/keystore-gradle-plugin
Sources: https://github.com/forgo/keystore-gradle-plugin
Version 1.1 (latest)
1.1
Created 13 May 2019.
Plugin to simplify creation of JKS keystores via a key, cert, and an intermediate PKCS12 keystore.
Using the plugins DSL:
plugins {
id("io.forgo.keystoreplugin") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.forgo.plugins.gradle:keystore-gradle-plugin:1.1")
}
}
apply(plugin = "io.forgo.keystoreplugin")
Using the plugins DSL:
plugins {
id "io.forgo.keystoreplugin" version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.forgo.plugins.gradle:keystore-gradle-plugin:1.1"
}
}
apply plugin: "io.forgo.keystoreplugin"