mirror of
https://github.com/GeyserMC/PackConverter.git
synced 2025-12-19 14:59:21 +00:00
34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
plugins {
|
|
id("io.freefair.lombok") version "8.6"
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
resources {
|
|
srcDir("src/main/java/resources")
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":pack-schema-api"))
|
|
compileOnly(project(":bedrock-pack-schema")) // Is provided by pack-schema-api for consumers, but not for us during compile time
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
implementation("commons-io:commons-io:2.11.0")
|
|
implementation("com.twelvemonkeys.imageio:imageio-tga:3.9.4")
|
|
implementation("com.nukkitx.fastutil:fastutil-int-object-maps:8.5.3")
|
|
api("net.kyori:adventure-api:4.14.0")
|
|
api("net.kyori:adventure-text-serializer-gson:4.14.0")
|
|
api("net.kyori:adventure-text-serializer-legacy:4.14.0")
|
|
// api("team.unnamed:creative-api:1.8.4-SNAPSHOT")
|
|
// api("team.unnamed:creative-serializer-minecraft:1.8.4-SNAPSHOT")
|
|
api("com.github.GeyserMC.unnamed-creative:creative-api:817fa982c4")
|
|
api("com.github.GeyserMC.unnamed-creative:creative-serializer-minecraft:817fa982c4")
|
|
|
|
compileOnly("com.google.auto.service:auto-service:1.0.1")
|
|
annotationProcessor("com.google.auto.service:auto-service:1.0.1")
|
|
}
|
|
|
|
java {
|
|
withSourcesJar()
|
|
} |