1
0
mirror of https://github.com/GeyserMC/PackConverter.git synced 2026-01-04 15:31:36 +00:00
Files
Thunder/bootstrap/build.gradle.kts
RednedEpic d34bdc7f27 Rewrite pack converter code and add pack schemas
Java POJO's are now generated from JSON schemas meaning they should always be up-to-date. The legacy converters have been moved into a separate package until they get converted. This new structure and systems/supporting APIs backing it makes the library far more powerful and will allow for much greater potential going forward.
2023-05-12 22:01:40 -05:00

20 lines
383 B
Plaintext

plugins {
id("application")
}
dependencies {
api(project(":converter"))
}
application {
mainClass.set("org.geysermc.pack.converter.boostrap.Main")
}
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
from("src/main/java/resources") {
include("*")
}
archiveFileName.set("PackConverter.jar")
archiveClassifier.set("")
}