25 lines
453 B
Plaintext
25 lines
453 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.9.0"
|
|
id("io.papermc.paperweight.userdev") version "1.5.9"
|
|
}
|
|
|
|
group = "net.fifitido.${REPO_NAME_LOWER}"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
paperweight.paperDevBundle("1.20.2-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
} |