1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2025-12-31 04:36:42 +00:00
Files
Thunder/pack-schema/api/build.gradle.kts

13 lines
458 B
Plaintext

dependencies {
compileOnly(project(":bedrock-pack-schema")) // Available on compile, but not runtime classpath - we shade it in task below
implementation("com.google.code.gson:gson:2.10.1")
implementation("org.jetbrains:annotations:24.0.1")
}
val bedrockPackSchemaSourceSet = project(":bedrock-pack-schema").sourceSets.getByName("main")
tasks.jar {
from(bedrockPackSchemaSourceSet.output)
duplicatesStrategy = DuplicatesStrategy.WARN
}