Search Gradle plugins

Version 1.0.0-beta-6

Created 11 April 2018.

Plugin supporting basic helm commands for a gradle build.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ca.cutterslade.helm") version "1.0.0-beta-6"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("ca.cutterslade.helm:ca.cutterslade.helm.gradle.plugin:1.0.0-beta-6")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ca.cutterslade.helm")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ca.cutterslade.helm:ca.cutterslade.helm.gradle.plugin:1.0.0-beta-6")
      }
    }
    
    apply(plugin = "ca.cutterslade.helm")
  • Applying plugins to all subprojects .