From 28d7f198e00bf0266a2a7a8ac8a91aba058f9e4b Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Sat, 9 Oct 2021 11:22:57 +0700 Subject: [PATCH] Updated spring boot to 2.5.5 and kotlin 1.5.31 --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 851a843..d3aaeab 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,11 +1,11 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { - id("org.springframework.boot") version "2.5.3" apply false + id("org.springframework.boot") version "2.5.5" apply false id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false - kotlin("jvm") version "1.5.21" apply false - kotlin("plugin.spring") version "1.5.21" apply false - kotlin("plugin.jpa") version "1.5.21" apply false + kotlin("jvm") version "1.5.31" apply false + kotlin("plugin.spring") version "1.5.31" apply false + kotlin("plugin.jpa") version "1.5.31" apply false } allprojects {