Search Gradle plugins

Version 3.0.1 (latest)

3.0.1

Created 09 December 2024.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("xyz.ronella.gradle.plugin:simple-choco:3.0.1")
      }
    }
    
    apply(plugin = "xyz.ronella.simple-choco")
  • Applying plugins to all subprojects .