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.
27 lines
487 B
Groovy
27 lines
487 B
Groovy
6 months ago
|
plugins {
|
||
|
id 'java'
|
||
|
id 'xyz.jpenilla.run-paper' version '2.2.2'
|
||
|
id 'com.github.johnrengelman.shadow' version '7.0.0'
|
||
|
}
|
||
|
|
||
|
group = 'me.tofaa'
|
||
|
version = '1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven {
|
||
|
url = "https://repo.papermc.io/repository/maven-public/"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":paper"))
|
||
|
compileOnly("io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT")
|
||
|
}
|
||
|
|
||
|
|
||
|
tasks {
|
||
|
runServer {
|
||
|
minecraftVersion("1.20.4")
|
||
|
}
|
||
|
}
|