Search Gradle plugins

Version 1.0.1 (latest)

Created 24 March 2021.

A Gradle plugin to install, update and uninstall choloatey packages.

Using the plugins DSL:

plugins {
  id("de.qaware.seu.as.code.chocolatey") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.qaware.seu.as.code:seuac-chocolatey-plugin:1.0.1")
  }
}

apply(plugin = "de.qaware.seu.as.code.chocolatey")

Using the plugins DSL:

plugins {
  id "de.qaware.seu.as.code.chocolatey" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.qaware.seu.as.code:seuac-chocolatey-plugin:1.0.1"
  }
}

apply plugin: "de.qaware.seu.as.code.chocolatey"

Learn how to apply plugins to subprojects