summaryrefslogtreecommitdiff
path: root/sw-server/build.gradle.kts
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 /sw-server/build.gradle.kts
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 'sw-server/build.gradle.kts')
-rw-r--r--sw-server/build.gradle.kts3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw-server/build.gradle.kts b/sw-server/build.gradle.kts
index 9897a4c8..b71a4526 100644
--- a/sw-server/build.gradle.kts
+++ b/sw-server/build.gradle.kts
@@ -2,7 +2,7 @@ plugins {
kotlin("jvm")
kotlin("plugin.spring")
kotlin("plugin.serialization")
- id("org.springframework.boot") version "2.7.5"
+ id("org.springframework.boot") version "3.0.6"
}
apply(plugin = "io.spring.dependency-management")
@@ -21,6 +21,7 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-security")
// required by spring security when using websockets
implementation("org.springframework.security:spring-security-messaging")
+ implementation(libs.javax.annotation.api)
// logging
implementation(libs.logback.classic)
bgstack15