summaryrefslogtreecommitdiff
path: root/gradle
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2021-11-17 16:45:43 +0100
committerJoffrey Bion <joffrey.bion@gmail.com>2021-11-18 01:40:53 +0100
commit144649a4570cffdc6426e20073002dae9b9fd5e5 (patch)
tree9d857d9ddabbcf45977e7d3c37a7b6a4229285ef /gradle
parentRename ci-cd workflow to deploy since it's manual now (diff)
downloadseven-wonders-144649a4570cffdc6426e20073002dae9b9fd5e5.tar.gz
seven-wonders-144649a4570cffdc6426e20073002dae9b9fd5e5.tar.bz2
seven-wonders-144649a4570cffdc6426e20073002dae9b9fd5e5.zip
Upgrade to Kotlin 1.6.0 and JDK 17
Diffstat (limited to 'gradle')
-rw-r--r--gradle/libs.versions.toml9
1 files changed, 5 insertions, 4 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index 5c9afcbe..aeefd17c 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -7,10 +7,11 @@ loki-logback-appender = "1.0.0"
micrometer-registry-prometheus = "1.6.1"
slf4j = "1.7.30"
-kotlin-react = "17.0.2-pre.265-kotlin-1.5.31"
-kotlin-reactRedux = "7.2.4-pre.265-kotlin-1.5.31"
-kotlin-reactRouterDom = "5.3.0-pre.265-kotlin-1.5.31"
-kotlin-styled = "5.3.3-pre.265-kotlin-1.5.31"
+# See https://github.com/JetBrains/kotlin-wrappers
+kotlin-react = "17.0.2-pre.266-kotlin-1.6.0"
+kotlin-reactRedux = "7.2.6-pre.266-kotlin-1.6.0"
+kotlin-reactRouterDom = "5.3.0-pre.266-kotlin-1.6.0"
+kotlin-styled = "5.3.3-pre.266-kotlin-1.6.0"
kotlin-blueprintjs-core = "3.49.1-4"
kotlin-blueprintjs-icons = "3.29.0-4"
bgstack15