add javacord dependency

This commit is contained in:
tueem 2024-10-25 20:24:41 +02:00
parent 2cdf574df0
commit 9768572577
No known key found for this signature in database
GPG Key ID: 819A0F7C36B9CF07
2 changed files with 3 additions and 0 deletions

@ -6,9 +6,11 @@ commons-math3 = "3.6.1"
guava = "33.0.0-jre" guava = "33.0.0-jre"
junit-jupiter = "5.10.2" junit-jupiter = "5.10.2"
log4j = "2.24.1" log4j = "2.24.1"
javacord = "3.8.0"
[libraries] [libraries]
commons-math3 = { module = "org.apache.commons:commons-math3", version.ref = "commons-math3" } commons-math3 = { module = "org.apache.commons:commons-math3", version.ref = "commons-math3" }
guava = { module = "com.google.guava:guava", version.ref = "guava" } guava = { module = "com.google.guava:guava", version.ref = "guava" }
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" } junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit-jupiter" }
log4j = { module = "org.apache.logging.log4j:log4j-core", version.ref = "log4j"} log4j = { module = "org.apache.logging.log4j:log4j-core", version.ref = "log4j"}
javacord = { module = "org.javacord:javacord", version.ref = "javacord"}

@ -21,6 +21,7 @@ dependencies {
testRuntimeOnly("org.junit.platform:junit-platform-launcher") testRuntimeOnly("org.junit.platform:junit-platform-launcher")
implementation(libs.log4j) implementation(libs.log4j)
implementation(libs.javacord)
implementation(project(":lib")) implementation(project(":lib"))
} }