forked from public-mirrors/Uniform
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
399 B
Groovy
20 lines
399 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'xyz.jpenilla.run-paper' version '2.3.0'
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":paper"))
|
|
|
|
compileOnly 'io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT'
|
|
}
|
|
|
|
tasks {
|
|
runServer {
|
|
minecraftVersion("1.20.4")
|
|
|
|
downloadPlugins {
|
|
url('https://download.luckperms.net/1549/bukkit/loader/LuckPerms-Bukkit-5.4.134.jar')
|
|
}
|
|
}
|
|
} |