Search Gradle plugins

Version 1.0-SNAPSHOT (latest)

Created 26 May 2020.

Plugin for getting started with kubernetes with a cicd pipeline

Using the plugins DSL:

plugins {
  id("com.github.bryncooke.kubeboot") version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.bryncooke.kubeboot:plugin:1.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.bryncooke.kubeboot")

Using the plugins DSL:

plugins {
  id "com.github.bryncooke.kubeboot" version "1.0-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.bryncooke.kubeboot:plugin:1.0-SNAPSHOT"
  }
}

apply plugin: "com.github.bryncooke.kubeboot"

Learn how to apply plugins to subprojects