initial commit

This commit is contained in:
2025-12-25 18:25:08 +01:00
commit 4fa66b19be
14 changed files with 758 additions and 0 deletions

27
build.gradle Normal file
View File

@@ -0,0 +1,27 @@
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()
}