搜索Gradle插件

io.github.bullshit.helmng

所有者: bullshit

这是套件的主要插件。它使得在helm内部启用多种额外的DSL块,例如charts和repositories。

https://github.com/bullshit/gradle-helmng-plugin

来源: https://github.com/bullshit/gradle-helmng-plugin

版本 0.1.0 (最新)

0.1.0

创建于 2023年4月7日。

这是套件的主要插件。它使得在helm内部启用多种额外的DSL块,例如charts和repositories。

使用插件DSL

plugins {
  id("io.github.bullshit.helmng") version "0.1.0"
}

使用旧插件应用程序

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

apply(plugin = "io.github.bullshit.helmng")

使用插件DSL

plugins {
  id "io.github.bullshit.helmng" version "0.1.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.bullshit.gradle-plugins.helm:helm-plugin:0.1.0"
  }
}

apply plugin: "io.github.bullshit.helmng"

了解如何将插件应用于子项目