io.papermc.paperweight.userdev
所有者: PaperMC
使用服务器内部实现开发Paper插件的Gradle插件
https://github.com/PaperMC/paperweight
来源:https://github.com/PaperMC/paperweight
使用plugins DSL
plugins {
id("io.papermc.paperweight.userdev") version "1.7.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.papermc.paperweight:paperweight-userdev:1.7.2")
}
}
apply(plugin = "io.papermc.paperweight.userdev")
使用plugins DSL
plugins {
id "io.papermc.paperweight.userdev" version "1.7.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.papermc.paperweight:paperweight-userdev:1.7.2"
}
}
apply plugin: "io.papermc.paperweight.userdev"