com.citi.helm-commands
Owner: Citi OSPO
Wrapper for common helm commands
https://citi.github.io/gradle-helm-plugin/
Sources: https://github.com/citi/gradle-helm-plugin
Using the plugins DSL:
plugins {
id("com.citi.helm-commands") version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.citi.gradle-plugins.helm:helm-plugin:2.2.0")
}
}
apply(plugin = "com.citi.helm-commands")
Using the plugins DSL:
plugins {
id "com.citi.helm-commands" version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.citi.gradle-plugins.helm:helm-plugin:2.2.0"
}
}
apply plugin: "com.citi.helm-commands"