Skip to content

Commit

Permalink
Update DeviousJDA on all projects, move the DeviousJDA declaration to…
Browse files Browse the repository at this point in the history
… settings.gradle.kts
  • Loading branch information
MrPowerGamerBR committed Oct 21, 2024
1 parent 1d5fc72 commit 3c0377d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 0 additions & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ object Versions {
const val PUDDING = "0.0.3-SNAPSHOT"
const val KOTLIN = "2.0.20"
const val KTOR = "2.3.6"
const val JDA = "5.0.0-deviousjda-alpha.22_DEV"
const val KOTLIN_SERIALIZATION = "1.6.0"
const val KOTLIN_COROUTINES = "1.6.0"
const val KOTLIN_LOGGING = "2.1.16"
Expand Down
2 changes: 1 addition & 1 deletion discord-chat-message-renderer-entities/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:${Versions.KOTLINX_DATE_TIME}")

// Discord
implementation("com.github.LorittaBot:DeviousJDA:40ea50aea7")
implementation(libs.deviousjda)
}
2 changes: 1 addition & 1 deletion discord-chat-message-renderer-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies {
implementation("com.microsoft.playwright:playwright:1.45.0")

// Discord
implementation("com.github.LorittaBot:DeviousJDA:40ea50aea7")
implementation(libs.deviousjda)

// Logging Stuff
implementation(libs.kotlin.logging)
Expand Down
2 changes: 1 addition & 1 deletion loricoolcards-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
implementation(project(":loritta-serializable-commons"))
implementation(project(":pudding:client"))
// Discord
implementation("com.github.LorittaBot:DeviousJDA:40ea50aea7")
implementation(libs.deviousjda)
implementation("club.minnced:jda-ktx:0.12.0")
// DreamStorageService
implementation("net.perfectdreams.dreamstorageservice:client:2.0.2")
Expand Down
2 changes: 1 addition & 1 deletion loritta-bot-discord/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")

// Discord
implementation("com.github.LorittaBot:DeviousJDA:4235406ee9")
implementation(libs.deviousjda)
implementation("club.minnced:jda-ktx:0.12.0")
implementation("club.minnced:discord-webhooks:0.8.4")

Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ dependencyResolutionManagement {
val logback = version("logback", "1.4.14")
val kotlinxCoroutines = version("kotlinx-coroutines", "1.6.4")

library("deviousjda", "com.github.LorittaBot", "DeviousJDA").version("4235406ee9")

library("kotlinx-coroutines-core", "org.jetbrains.kotlinx", "kotlinx-coroutines-core").version(kotlinxCoroutines)
library("kotlinx-coroutines-debug", "org.jetbrains.kotlinx", "kotlinx-coroutines-debug").version(kotlinxCoroutines)

Expand Down

0 comments on commit 3c0377d

Please sign in to comment.