dev.mythicdrops.gradle.release.github
所有者: Richard Harrah
通过 GitHub Actions 为所有 MythicDrops Gradle 项目创建 GitHub 发布。
https://github.com/MythicDrops/mythicdrops-gradle-plugin
源代码: https://github.com/MythicDrops/mythicdrops-gradle-plugin
版本 9.0.0 (最新版)
9.0.0
创建于 2024 年 7 月 5 日。
通过 GitHub Actions 为所有 MythicDrops Gradle 项目创建 GitHub 发布。
使用插件 DSL
plugins {
id("dev.mythicdrops.gradle.release.github") version "9.0.0"
}
使用旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0")
}
}
apply(plugin = "dev.mythicdrops.gradle.release.github")
使用插件 DSL
plugins {
id "dev.mythicdrops.gradle.release.github" version "9.0.0"
}
使用旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "dev.mythicdrops:mythicdrops-gradle-plugin:9.0.0"
}
}
apply plugin: "dev.mythicdrops.gradle.release.github"