Search Gradle plugins

Version 0.1.2

0.1.2

Created 26 June 2022.

Generate JSON schemas to validate values of complex Helm charts with Gradle!

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.fstaudt.helm-values") version "0.1.2"
}

See also:

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