搜索 Gradle 插件

版本 2.0.1 (最新)

2.0.1

创建于 2024年1月24日。

使用 REST API 向 Github 发布版本

使用 插件 DSL

plugins {
  id("org.shipkit.shipkit-github-release") version "2.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.shipkit:shipkit-changelog:2.0.1")
  }
}

apply(plugin = "org.shipkit.shipkit-github-release")

使用 插件 DSL

plugins {
  id "org.shipkit.shipkit-github-release" version "2.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.shipkit:shipkit-changelog:2.0.1"
  }
}

apply plugin: "org.shipkit.shipkit-github-release"

了解如何应用到子项目