Combat_f/build.gradle.kts

29 lines
504 B
Plaintext
Raw Normal View History

2023-03-27 15:48:17 +00:00
plugins {
kotlin("jvm") version "1.8.0"
id("io.papermc.paperweight.userdev") version "1.5.3"
2023-03-27 15:48:17 +00:00
}
group = "group.pvpconnect"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
}
dependencies {
testImplementation(kotlin("test"))
paperweight.paperDevBundle("1.19.2-R0.1-SNAPSHOT")
implementation("io.github.monun:kommand-api:3.1.3")
2023-03-27 15:48:17 +00:00
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}