summaryrefslogtreecommitdiff
path: root/gradle
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2023-04-30 02:00:26 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2023-04-30 02:37:21 +0200
commit068d1b5dedadfe49f885ea11ec7203b33ddf4925 (patch)
tree8aa9bbcc52a998fa57e1d6d54b804c73e05ff20b /gradle
parentUpgrade Kotlin to 1.8.21 (diff)
downloadseven-wonders-068d1b5dedadfe49f885ea11ec7203b33ddf4925.tar.gz
seven-wonders-068d1b5dedadfe49f885ea11ec7203b33ddf4925.tar.bz2
seven-wonders-068d1b5dedadfe49f885ea11ec7203b33ddf4925.zip
Upgrade to Spring Boot 3.0
Diffstat (limited to 'gradle')
-rw-r--r--gradle/libs.versions.toml26
1 files changed, 8 insertions, 18 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 69ed05b9..c489e60a 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -2,36 +2,26 @@
[versions]
+javax-annotation-api="1.3.2"
kotlinx-coroutines = "1.6.4"
kotlinx-serialization = "1.5.0"
krossbow = "5.1.0"
-logback-classic = "1.2.11"
-## ⬆ = "1.3.0" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.3.1" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.3.2" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.3.3" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.3.4" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.4.0" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.4.1" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.4.2" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.4.3" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-## ⬆ = "1.4.4" # requires SLF4J 2, which requires Spring Boot 3.0.0 (not there yet)
-loki-logback-appender = "1.3.2"
-micrometer-registry-prometheus = "1.9.5"
-slf4j = "1.7.36"
-## ⬆ = "2.0.0" # Wait for Spring Boot 3.0.0
-## ⬆ = "2.0.1" # Wait for Spring Boot 3.0.0
-## ⬆ = "2.0.2" # Wait for Spring Boot 3.0.0
-## ⬆ = "2.0.3" # Wait for Spring Boot 3.0.0
+logback-classic = "1.4.7"
+loki-logback-appender = "1.4.0"
+micrometer-registry-prometheus = "1.10.6"
+slf4j = "2.0.7"
# See https://github.com/JetBrains/kotlin-wrappers
kotlin-wrappers = "1.0.0-pre.488"
+## ⬆ = "1.0.0-pre.545"
kotlin-blueprintjs-core = "4.15.0-8"
kotlin-blueprintjs-icons = "4.13.0-8"
[libraries]
+javax-annotation-api = { module = "javax.annotation:javax.annotation-api", version.ref = "javax-annotation-api" }
+
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinx-coroutines" }
kotlinx-coroutines-reactor = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-reactor", version.ref = "kotlinx-coroutines" }
kotlinx-serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "kotlinx-serialization" }
bgstack15