plugins { kotlin("jvm") version "1.8.0" id("io.papermc.paperweight.userdev") version "1.5.3" } 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") } tasks.test { useJUnitPlatform() } kotlin { jvmToolchain(17) }