Upgrade spring boot to 2.6.7 and kotlin 1.6.21
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sambo Chea 2022-04-21 20:40:21 +07:00
parent daa3e534ee
commit 5e1ce9a0fa
Signed by: sombochea
GPG Key ID: 3C7CF22A05D95490
3 changed files with 8 additions and 8 deletions

View File

@ -8,8 +8,8 @@
### Language and Framework ### Language and Framework
- Spring Boot: 2.6.6 - Spring Boot: 2.6.7
- Kotlin: 1.6.20 - Kotlin: 1.6.21
- Gradle: 7.4.1 - Gradle: 7.4.1
# Modules # Modules

View File

@ -8,8 +8,8 @@ plugins {
kotlin("plugin.jpa") kotlin("plugin.jpa")
} }
val kotlinVersion = "1.6.20" val kotlinVersion = "1.6.21"
val springBootVersion = "2.6.6" val springBootVersion = "2.6.7"
// find the last commit // find the last commit
fun getGitHashLastCommit(): String { fun getGitHashLastCommit(): String {

View File

@ -1,11 +1,11 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins { 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 id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false
kotlin("jvm") version "1.6.20" apply false kotlin("jvm") version "1.6.21" apply false
kotlin("plugin.spring") version "1.6.20" apply false kotlin("plugin.spring") version "1.6.21" apply false
kotlin("plugin.jpa") version "1.6.20" apply false kotlin("plugin.jpa") version "1.6.21" apply false
} }
allprojects { allprojects {