mirror of
https://github.com/GeyserMC/PackConverter.git
synced 2026-01-04 15:31:36 +00:00
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.
20 lines
383 B
Plaintext
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("")
|
|
} |