ca.cutterslade.helm
                  Owner:
                  
                    
                    Wesley Hartford
                  
                
Plugin supporting basic helm commands for a gradle build.
https://github.com/wfhartford/gradle-helm
Sources: https://github.com/wfhartford/gradle-helm.git
Version 1.0.0-beta-3
Created 09 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-3"
}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-3") }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-3") } } apply(plugin = "ca.cutterslade.helm")
- Applying plugins to all subprojects .