Search Gradle plugins

Version 3.0.0 (latest)

3.0.0

Created 17 November 2024.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects