com.github.bryncooke.kubeboot
所有者: Bryn Cooke
使用CI/CD流水线开始使用Kubernetes的插件
https://github.com/bryncooke/kubeboot
源代码: https://github.com/bryncooke/kubeboot.git
版本 1.0-SNAPSHOT (最新版)
1.0-SNAPSHOT
创建于2020年5月26日。
使用CI/CD流水线开始使用Kubernetes的插件
使用plugins DSL
plugins {
id("com.github.bryncooke.kubeboot") version "1.0-SNAPSHOT"
}
使用旧插件应用方法
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.bryncooke.kubeboot:plugin:1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.bryncooke.kubeboot")
使用plugins DSL
plugins {
id "com.github.bryncooke.kubeboot" version "1.0-SNAPSHOT"
}
使用旧插件应用方法
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.bryncooke.kubeboot:plugin:1.0-SNAPSHOT"
}
}
apply plugin: "com.github.bryncooke.kubeboot"