搜索Gradle插件

版本 1.3 (最新)

1.3

创建于 2023 年 2 月 18 日。

自动更新gradle项目版本。添加标签并推送到远程github仓库。

使用plugins DSL

plugins {
  id("com.robothy.github-repository-release-plugin") version "1.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.robothy:github-repository-release-gradle-plugin:1.3")
  }
}

apply(plugin = "com.robothy.github-repository-release-plugin")

使用plugins DSL

plugins {
  id "com.robothy.github-repository-release-plugin" version "1.3"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.robothy:github-repository-release-gradle-plugin:1.3"
  }
}

apply plugin: "com.robothy.github-repository-release-plugin"

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