搜索 Gradle 插件

版本 1.0.12 (最新版)

1.0.12

创建于 2024 年 6 月 13 日。

Gradle 插件,用于创建 GitHub 发布并上传构件。

使用 插件 DSL

plugins {
  id("com.fizzpod.github-release") version "1.0.12"
}

使用 旧的插件应用方法

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

apply(plugin = "com.fizzpod.github-release")

使用 插件 DSL

plugins {
  id "com.fizzpod.github-release" version "1.0.12"
}

使用 旧的插件应用方法

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

apply plugin: "com.fizzpod.github-release"

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