net.minecrell.plugin-yml.bungee
所有者: Minecrell
一个用于根据Gradle项目生成Bukkit/BungeeCord插件的plugin.yml的Gradle插件
https://github.com/Minecrell/plugin-yml
来源: https://github.com/Minecrell/plugin-yml
使用 plugins DSL
plugins {
id("net.minecrell.plugin-yml.bungee") version "0.6.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("net.minecrell:plugin-yml:0.6.0")
}
}
apply(plugin = "net.minecrell.plugin-yml.bungee")
使用 plugins DSL
plugins {
id "net.minecrell.plugin-yml.bungee" version "0.6.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "net.minecrell:plugin-yml:0.6.0"
}
}
apply plugin: "net.minecrell.plugin-yml.bungee"