搜索Gradle插件

版本 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"

了解如何将插件应用到子项目中