io.github.thomo.valuestable
Owner: Thomas Mohaupt
Creates an overview of helm values defined in multiple files
https://github.com/thomo/valuestable
Sources: https://github.com/thomo/valuestable.git
Version 1.4.1 (latest)
1.4.1
Created 19 January 2024.
Creates an overview of helm values defined in multiple files
Using the plugins DSL:
plugins {
id("io.github.thomo.valuestable") version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.thomo.valuestable.plugin:plugin:1.4.1")
}
}
apply(plugin = "io.github.thomo.valuestable")
Using the plugins DSL:
plugins {
id "io.github.thomo.valuestable" version "1.4.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.thomo.valuestable.plugin:plugin:1.4.1"
}
}
apply plugin: "io.github.thomo.valuestable"