Search Gradle plugins

Version 1.2.0 (latest)

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"

Learn how to apply plugins to subprojects