Search Gradle plugins

Version 0.3.0

Created 17 September 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.fstaudt.helm:helm-values-gradle-plugin:0.3.0")
  }
}

apply(plugin = "io.github.fstaudt.helm-values")

Using the plugins DSL:

plugins {
  id "io.github.fstaudt.helm-values" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.fstaudt.helm:helm-values-gradle-plugin:0.3.0"
  }
}

apply plugin: "io.github.fstaudt.helm-values"

Learn how to apply plugins to subprojects