org.unbroken-dome.helm-commands
所有者: Till Krullmann
一套用于构建、发布和管理 Helm 图表的 Gradle 插件。
https://github.com/unbroken-dome/gradle-helm-plugin
来源: https://github.com/unbroken-dome/gradle-helm-plugin
版本 2.0.0 (最新版)
2.0.0
创建于 2023 年 8 月 22 日。
一个从 Gradle 执行 Helm 命令的插件。这为其他与 Helm 相关的插件提供了基础。通常情况下,您想使用 org.unbroken-dome.helm 插件。
使用 plugins DSL
plugins {
id("org.unbroken-dome.helm-commands") version "2.0.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.unbroken-dome.gradle-plugins.helm:helm-plugin:2.0.0")
}
}
apply(plugin = "org.unbroken-dome.helm-commands")
使用 plugins DSL
plugins {
id "org.unbroken-dome.helm-commands" version "2.0.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.unbroken-dome.gradle-plugins.helm:helm-plugin:2.0.0"
}
}
apply plugin: "org.unbroken-dome.helm-commands"