initial commit
This commit is contained in:
27
build.gradle
Normal file
27
build.gradle
Normal 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()
|
||||
}
|
||||
Reference in New Issue
Block a user