mirror of
https://github.com/GeyserMC/GeyserOptionalPack.git
synced 2026-01-06 15:41:55 +00:00
28 lines
488 B
Groovy
28 lines
488 B
Groovy
plugins {
|
|
id 'java'
|
|
id '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'
|
|
}
|
|
|
|
jar {
|
|
archiveFileName = 'GeyserOptionalPackCompiler.jar'
|
|
manifest {
|
|
attributes 'Main-Class': application.mainClass
|
|
}
|
|
}
|
|
|
|
application {
|
|
mainClass = 'org.geysermc.optionalpack.OptionalPack'
|
|
}
|