Files
FancyPlugins/libraries/packets/implementations/1_20_6/build.gradle.kts
2025-03-03 21:57:54 +01:00

23 lines
613 B
Kotlin

plugins {
id("java-library")
id("io.papermc.paperweight.userdev")
}
val minecraftVersion = "1.20.6"
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
dependencies {
paperweight.paperDevBundle("$minecraftVersion-R0.1-SNAPSHOT")
compileOnly(project(":libraries:packets:api"))
testImplementation(project(":libraries:packets:api"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
}
tasks {
test {
useJUnitPlatform()
}
}