io.github.bullshit.helmng-publish
所有者: bullshit
使用此插件将图表发布到远程图表存储库,如ChartMuseum。
https://github.com/bullshit/gradle-helmng-plugin
来源: https://github.com/bullshit/gradle-helmng-plugin
版本 0.1.0(最新版本)
0.1.0
创建于2023年4月7日。
使用此插件将图表发布到远程图表存储库,如ChartMuseum。
使用插件DSL
plugins {
id("io.github.bullshit.helmng-publish") version "0.1.0"
}
使用老旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.bullshit.gradle-plugins.helm:helm-publish-plugin:0.1.0")
}
}
apply(plugin = "io.github.bullshit.helmng-publish")
使用插件DSL
plugins {
id "io.github.bullshit.helmng-publish" version "0.1.0"
}
使用老旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.bullshit.gradle-plugins.helm:helm-publish-plugin:0.1.0"
}
}
apply plugin: "io.github.bullshit.helmng-publish"