1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2026-01-06 15:41:51 +00:00
Files
Thunder/converter/build.gradle.kts
2023-05-30 22:09:49 -05:00

23 lines
946 B
Plaintext

dependencies {
api(project(":pack-schema-api"))
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")
implementation("net.kyori:adventure-api:4.13.1")
implementation("net.kyori:adventure-text-serializer-gson:4.13.1")
implementation("net.kyori:adventure-text-serializer-legacy:4.13.1")
implementation("team.unnamed:creative-api:0.7.1-SNAPSHOT")
implementation("team.unnamed:creative-serializer-minecraft:0.7.1-SNAPSHOT")
compileOnly("com.google.auto.service:auto-service:1.0.1")
annotationProcessor("com.google.auto.service:auto-service:1.0.1")
}
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
from("src/main/java/resources") {
include("*")
}
archiveClassifier.set("")
}