xyz.ronella.simple-choco
Owner: Ronaldo Webb
The plugin that allows you access to choco commands inside gradle as task
https://github.com/rcw3bb/simple-choco
Sources: https://github.com/rcw3bb/simple-choco
Version 2.1.0
2.1.0
Created 16 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 "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.ronella.gradle.plugin:simple-choco:2.1.0")
}
}
apply(plugin = "xyz.ronella.simple-choco")
Using the plugins DSL:
plugins {
id "xyz.ronella.simple-choco" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.ronella.gradle.plugin:simple-choco:2.1.0"
}
}
apply plugin: "xyz.ronella.simple-choco"