Files
FancyPlugins/libraries/packets/implementations/1_21_5/build.gradle.kts
2025-03-27 18:27:34 +01:00

22 lines
665 B
Kotlin

plugins {
id("java-library")
id("io.papermc.paperweight.userdev")
}
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
dependencies {
paperweight.paperDevBundle("1.21.5-no-moonrise-SNAPSHOT")
compileOnly(project(":libraries:packets:api"))
testImplementation(project(":libraries:packets:api"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
testImplementation("org.junit.platform:junit-platform-console-standalone:1.12.1")
}
tasks {
test {
useJUnitPlatform()
}
}