From 726a59ecd86a6ecb3ddfde6b189fd23cec03ca06 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Fri, 21 May 2021 20:48:27 +0700 Subject: [PATCH] Upgrade Spring Boot 2.5.0 and Kotlin 1.5.0 --- build.gradle.kts | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2f51dc0..f39c9ad 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,23 +1,11 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile -buildscript { - val springBootVersion = "2.4.5" - - repositories { - mavenCentral() - } - - dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") - } -} - plugins { - id("org.springframework.boot") version "2.4.5" apply false + id("org.springframework.boot") version "2.5.0" apply false id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false - kotlin("jvm") version "1.4.32" apply false - kotlin("plugin.spring") version "1.4.32" apply false - kotlin("plugin.jpa") version "1.4.32" apply false + kotlin("jvm") version "1.5.0" apply false + kotlin("plugin.spring") version "1.5.0" apply false + kotlin("plugin.jpa") version "1.5.0" apply false } allprojects {