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