Files
FancyPlugins/libraries/packets/implementations/1_21/build.gradle.kts

25 lines
793 B
Kotlin

plugins {
id("java-library")
id("io.papermc.paperweight.userdev")
}
val minecraftVersion = "1.21"
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
dependencies {
paperweight.paperDevBundle("$minecraftVersion-R0.1-SNAPSHOT")
compileOnly(project(":libraries:packets:packets-api"))
testImplementation(project(":libraries:packets:packets-api"))
testImplementation(project(":libraries:packets:implementations:1_20_6"))
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()
}
}