Search Gradle plugins

Version 1.0.4

1.0.4

Created 09 February 2023.

A suite of Gradle plugins for building, publishing and managing Helm charts.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.mehmetsalgar.helm-commands") version "1.0.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.mehmetsalgar.gradle-plugins.helm:helm-plugin:1.0.4")
      }
    }
    
    apply(plugin = "io.github.mehmetsalgar.helm-commands")
  • Applying plugins to all subprojects .