Search Gradle plugins

com.kiwigrid.helm

Gradle Plugin to integrate HELM Chart development in a gradle project with strong focus on build and test.

https://github.com/kiwigrid/helm-gradle-plugin

Sources: https://github.com/kiwigrid/helm-gradle-plugin

Version 1.3.0

Created 09 February 2020.

Gradle Plugin to integrate HELM Chart development in a gradle project with
strong focus on build and test.

Using the plugins DSL:

plugins {
  id("com.kiwigrid.helm") version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.kiwigrid:gradle-helm-plugin:1.3.0")
  }
}

apply(plugin = "com.kiwigrid.helm")

Using the plugins DSL:

plugins {
  id "com.kiwigrid.helm" version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.kiwigrid:gradle-helm-plugin:1.3.0"
  }
}

apply plugin: "com.kiwigrid.helm"

Learn how to apply plugins to subprojects