From 5e1ce9a0fa787c5a89a9cbfa6210752e6869eb8e Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Thu, 21 Apr 2022 20:40:21 +0700 Subject: [PATCH] Upgrade spring boot to 2.6.7 and kotlin 1.6.21 --- README.md | 4 ++-- api/build.gradle.kts | 4 ++-- build.gradle.kts | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0bc2647..2f85f62 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ ### Language and Framework -- Spring Boot: 2.6.6 -- Kotlin: 1.6.20 +- Spring Boot: 2.6.7 +- Kotlin: 1.6.21 - Gradle: 7.4.1 # Modules diff --git a/api/build.gradle.kts b/api/build.gradle.kts index 605dfa7..b9cd28b 100644 --- a/api/build.gradle.kts +++ b/api/build.gradle.kts @@ -8,8 +8,8 @@ plugins { kotlin("plugin.jpa") } -val kotlinVersion = "1.6.20" -val springBootVersion = "2.6.6" +val kotlinVersion = "1.6.21" +val springBootVersion = "2.6.7" // find the last commit fun getGitHashLastCommit(): String { diff --git a/build.gradle.kts b/build.gradle.kts index 3e6ffa5..9aeb8e2 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.6.6" apply false + id("org.springframework.boot") version "2.6.7" apply false id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false - kotlin("jvm") version "1.6.20" apply false - kotlin("plugin.spring") version "1.6.20" apply false - kotlin("plugin.jpa") version "1.6.20" apply false + kotlin("jvm") version "1.6.21" apply false + kotlin("plugin.spring") version "1.6.21" apply false + kotlin("plugin.jpa") version "1.6.21" apply false } allprojects {