Search Gradle plugins

io.github.bullshit.helmng

Owner: bullshit

This is the main plugin of the suite. It enables a variety of extra DSL blocks inside helm, for example charts and repositories.

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

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

Version 0.1.0 (latest)

Created 07 April 2023.

This is the main plugin of the suite. It enables a variety of extra DSL blocks inside helm, for example charts and repositories.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects