Search Gradle plugins

Version 2.0.0 (latest)

Created 04 April 2022.

The plugin that allows you access to choco commands inside gradle as task

Using the plugins DSL:

plugins {
  id("xyz.ronella.simple-choco") version "2.0.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "xyz.ronella.simple-choco" version "2.0.0"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects