add first database revision

This commit is contained in:
Jannik Reimers 2024-11-05 22:15:46 +01:00
parent 69a08ce6d4
commit 65e4a3d77c
Signed by: jansel
GPG key ID: 39C62D7D5233CFD0
10 changed files with 192 additions and 47 deletions

View file

@ -20,6 +20,7 @@ dependencies {
implementation(libs.kx.ser)
implementation(libs.kx.coroutines)
implementation(libs.twitch4j)
implementation(libs.kmongo)
// Logging dependencies
implementation(libs.groovy)
@ -32,6 +33,8 @@ dependencies {
kordEx {
kordExVersion = "2.3.1-SNAPSHOT"
jvmTarget = 21
bot {
// See https://docs.kordex.dev/data-collection.html
dataCollection(DataCollection.Standard)
@ -79,3 +82,8 @@ docker {
)
}
}
tasks.wrapper {
gradleVersion = "8.10.2"
distributionType = Wrapper.DistributionType.BIN
}