Search Gradle plugins

Version 1.0.1

Created 03 May 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.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.ronella.gradle.plugin:simple-keytool:1.0.1")
  }
}

apply(plugin = "xyz.ronella.simple-keytool")

Using the plugins DSL:

plugins {
  id "xyz.ronella.simple-keytool" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.ronella.gradle.plugin:simple-keytool:1.0.1"
  }
}

apply plugin: "xyz.ronella.simple-keytool"

Learn how to apply plugins to subprojects