org.fidata.keygen
Owner: Basil Peace
Generates SSH keys from Gradle
https://github.com/FIDATA/gradle-keygen-plugin
Sources: https://github.com/FIDATA/gradle-keygen-plugin
Version 1.2.0 (latest)
1.2.0
Created 02 December 2018.
Bug Fixes:
* fix incorrect detection whether key files exist
* don't share non-thread-safe JSch
Features:
* update JSch
Using the plugins DSL:
plugins {
id("org.fidata.keygen") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.fidata.gradle:gradle-keygen-plugin:1.2.0")
}
}
apply(plugin = "org.fidata.keygen")
Using the plugins DSL:
plugins {
id "org.fidata.keygen" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.fidata.gradle:gradle-keygen-plugin:1.2.0"
}
}
apply plugin: "org.fidata.keygen"