com.pswidersk.helm-plugin
Owner: Przemysław Świderski
Simple Gradle plugin to wrap Helm executable as task.
https://github.com/PrzemyslawSwiderski/helm-gradle-plugin
Sources: https://github.com/PrzemyslawSwiderski/helm-gradle-plugin
Version 1.1.1 (latest)
1.1.1
Created 23 September 2024.
Simple Plugin to wrap Helm executable as task.
Using the plugins DSL:
plugins {
id("com.pswidersk.helm-plugin") version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.pswidersk:helm-gradle-plugin:1.1.1")
}
}
apply(plugin = "com.pswidersk.helm-plugin")
Using the plugins DSL:
plugins {
id "com.pswidersk.helm-plugin" version "1.1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.pswidersk:helm-gradle-plugin:1.1.1"
}
}
apply plugin: "com.pswidersk.helm-plugin"