mirror of
https://github.com/GeyserMC/PackConverter.git
synced 2025-12-19 14:59:21 +00:00
20 lines
382 B
Plaintext
20 lines
382 B
Plaintext
plugins {
|
|
id("application")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":converter"))
|
|
}
|
|
|
|
application {
|
|
mainClass.set("org.geysermc.packconverter.boostrap.Main")
|
|
}
|
|
|
|
tasks.withType<com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar> {
|
|
from("src/main/java/resources") {
|
|
include("*")
|
|
}
|
|
|
|
archiveFileName.set("PackConverter.jar")
|
|
archiveClassifier.set("")
|
|
} |