Search Gradle plugins

Version 1.0.6 (latest)

Created 04 September 2020.

Simple Gradle plugin to wrap Helm executable as task.

Using the plugins DSL:

plugins {
  id("com.pswidersk.helm-plugin") version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.pswidersk:helm-gradle-plugin:1.0.6")
  }
}

apply(plugin = "com.pswidersk.helm-plugin")

Using the plugins DSL:

plugins {
  id "com.pswidersk.helm-plugin" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.pswidersk:helm-gradle-plugin:1.0.6"
  }
}

apply plugin: "com.pswidersk.helm-plugin"

Learn how to apply plugins to subprojects