summaryrefslogtreecommitdiff
path: root/sw-server/build.gradle.kts
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2023-07-05 18:30:13 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2023-07-05 18:30:13 +0200
commit3c1ef68ff3a278cfb0c8e88ef4f09c58548935a8 (patch)
tree91c5b2028d2936176bc055928a6e2df1d2bde4ef /sw-server/build.gradle.kts
parentUpgrade Docker Build Push action to v4 (diff)
downloadseven-wonders-3c1ef68ff3a278cfb0c8e88ef4f09c58548935a8.tar.gz
seven-wonders-3c1ef68ff3a278cfb0c8e88ef4f09c58548935a8.tar.bz2
seven-wonders-3c1ef68ff3a278cfb0c8e88ef4f09c58548935a8.zip
Use Spring boot BOM instead of dependency management plugin
Diffstat (limited to 'sw-server/build.gradle.kts')
-rw-r--r--sw-server/build.gradle.kts5
1 files changed, 2 insertions, 3 deletions
diff --git a/sw-server/build.gradle.kts b/sw-server/build.gradle.kts
index ef860c79..1be244f2 100644
--- a/sw-server/build.gradle.kts
+++ b/sw-server/build.gradle.kts
@@ -2,11 +2,9 @@ plugins {
kotlin("jvm")
kotlin("plugin.spring")
kotlin("plugin.serialization")
- id("org.springframework.boot") version "3.1.1"
+ alias(libs.plugins.spring.boot)
}
-apply(plugin = "io.spring.dependency-management")
-
dependencies {
implementation(projects.swCommonModel)
implementation(projects.swEngine)
@@ -17,6 +15,7 @@ dependencies {
implementation(libs.kotlinx.coroutines.reactor) // for Spring
implementation(libs.kotlinx.serialization.json)
+ implementation(platform(libs.spring.boot.bom))
implementation("org.springframework.boot:spring-boot-starter-websocket")
implementation("org.springframework.boot:spring-boot-starter-security")
// required by spring security when using websockets
bgstack15