com.slothmotion.minikube
                  Owner:
                  
                    
                    slothmotion
                  
                
Bootstrapping Minikube for platform independency
https://github.com/slothmotion/gradle-plugins/tree/master/minikube
Sources: https://github.com/slothmotion/gradle-plugins/tree/master/minikube
Version 0.0.3 (latest)
Created 20 June 2019.
                Bootstrapping Minikube for platform independency
                
            
            
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.slothmotion.minikube") version "0.0.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("com.slothmotion.minikube:com.slothmotion.minikube.gradle.plugin:0.0.3") }It can then be applied in the precompiled script plugin:plugins { id("com.slothmotion.minikube") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.slothmotion.minikube:com.slothmotion.minikube.gradle.plugin:0.0.3") } } apply(plugin = "com.slothmotion.minikube") - Applying plugins to all subprojects .