搜索 Gradle 插件

版本 1.1.20200614081240(最新版本)

1.1.20200614081240

创建于 2020 年 6 月 14 日。

此插件版本将在 JCenter 成为 Maven Central 的永久重定向后不再解析,因为它只使用在 JCenter 可找到的依赖。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 通过 Gradle 访问 Helm 命令行工具以执行 Kubernetes 软件包管理。

使用 plugins DSL

plugins {
  id("com.github.rmee.helm") version "1.1.20200614081240"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.rmee:helm:1.1.20200614081240")
  }
}

apply(plugin = "com.github.rmee.helm")

使用 plugins DSL

plugins {
  id "com.github.rmee.helm" version "1.1.20200614081240"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.rmee:helm:1.1.20200614081240"
  }
}

apply plugin: "com.github.rmee.helm"

学习如何将插件应用于子项目