mirror of
https://github.com/barkeser2002/Boiler.git
synced 2026-09-25 01:40:02 +03:00
24 lines
542 B
Kotlin
24 lines
542 B
Kotlin
import io.papermc.paperweight.userdev.ReobfArtifactConfiguration
|
|
|
|
plugins {
|
|
id("io.papermc.paperweight.userdev")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":platform-common"))
|
|
paperweight.paperDevBundle("1.21.3-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
paperweight {
|
|
reobfArtifactConfiguration = ReobfArtifactConfiguration.MOJANG_PRODUCTION
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_21
|
|
targetCompatibility = JavaVersion.VERSION_21
|
|
}
|
|
|
|
tasks.reobfJar {
|
|
outputJar.set(tasks.jar.map { it.outputs.files.singleFile }.get())
|
|
enabled = false
|
|
} |