mirror of
https://github.com/GeyserMC/GeyserOptionalPack.git
synced 2025-12-19 14:59:14 +00:00
* Add json patching renderer * Make minecraft:trial_spawner_detection particle have parity * Oops meant to keep this * Move Arrow, Rabbit and Illusioner entity to new json patches * Move to .patch.json system * Bump pack version * Update title visibility condition to only hide blank text * Use nicer json format * Change to .kts, fix trial_spawner_detection_ominous particle --------- Co-authored-by: chris <github@onechris.mozmail.com>
28 lines
495 B
Plaintext
28 lines
495 B
Plaintext
plugins {
|
|
java
|
|
application
|
|
}
|
|
|
|
group = "org.geysermc.optionalpack"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.google.code.gson:gson:2.13.1")
|
|
implementation("org.reflections:reflections:0.10.2")
|
|
}
|
|
|
|
tasks {
|
|
jar {
|
|
archiveFileName = "GeyserOptionalPackCompiler.jar"
|
|
manifest.attributes["Main-Class"] = application.mainClass
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass.set("org.geysermc.optionalpack.OptionalPack")
|
|
}
|