搜索 Gradle 插件

net.wooga.github

拥有者: Manne Endres

此插件提供任务和约定,以发布到 GitHub 发布

https://wooga.github.io/atlas-github/

来源: https://github.com/wooga/atlas-github

版本 4.0.0 (最新版)

4.0.0

创建于 2023 年 6 月 26 日。

此插件提供任务和约定,以发布到 GitHub 发布

使用 插件 DSL

plugins {
  id("net.wooga.github") version "4.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.wooga.gradle:github:4.0.0")
  }
}

apply(plugin = "net.wooga.github")

使用 插件 DSL

plugins {
  id "net.wooga.github" version "4.0.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:github:4.0.0"
  }
}

apply plugin: "net.wooga.github"

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