28 lines
503 B
Groovy
28 lines
503 B
Groovy
plugins {
|
|
id 'java'
|
|
id "application"
|
|
id "com.gradleup.shadow" version "9.3.0"
|
|
}
|
|
|
|
group = 'de.mhsl.teamspeak.channelbot'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
application {
|
|
mainClass = "de.mhsl.teamspeak.channelbot.TalkRoomAutoManager"
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
|
|
}
|
|
|
|
shadowJar {
|
|
archiveBaseName = "talkroom-bot"
|
|
archiveVersion = "1.0.0"
|
|
archiveClassifier = "all"
|
|
mergeServiceFiles()
|
|
}
|