搜索Gradle插件

版本 0.1.1 (最新)

0.1.1

创建于2022年10月23日。

将应用程序工件上传到GitHub版本,并发布应用程序清单

使用插件 DSL

plugins {
  id("io.github.itzg.github-releaser") version "0.1.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.itzg:github-releaser-gradle-plugin:0.1.1")
  }
}

apply(plugin = "io.github.itzg.github-releaser")

使用插件 DSL

plugins {
  id "io.github.itzg.github-releaser" version "0.1.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.itzg:github-releaser-gradle-plugin:0.1.1"
  }
}

apply plugin: "io.github.itzg.github-releaser"

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