1
0
mirror of https://github.com/GeyserMC/GeyserOptionalPack.git synced 2025-12-19 06:49:21 +00:00
Files
GeyserOptionalPack/build.gradle.kts
2025-11-17 00:17:20 +01:00

28 lines
503 B
Plaintext

plugins {
java
application
}
group = "org.geysermc.integratedpack"
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 = "GeyserIntegratedPackCompiler.jar"
manifest.attributes["Main-Class"] = application.mainClass
}
}
application {
mainClass.set("org.geysermc.integratedpack.IntegratedPack")
}