Task: Upgraded web modules template to kotlin 1.5.10

This commit is contained in:
Sambo Chea 2021-06-02 07:51:37 +07:00
parent a57e6a1425
commit e9acd01fc0
3 changed files with 6 additions and 6 deletions

View File

@ -12,5 +12,5 @@
### Language and Framework ### Language and Framework
- Spring Boot: 2.5.0 - Spring Boot: 2.5.0
- Kotlin: 1.5.0 - Kotlin: 1.5.10
- Gradle: 7.0.2 - Gradle: 7.0.2

View File

@ -7,8 +7,8 @@ plugins {
kotlin("plugin.spring") kotlin("plugin.spring")
} }
val kotlinVersion = "1.4.32" val kotlinVersion = "1.5.10"
val springBootVersion = "2.4.5" val springBootVersion = "2.5.0"
// find the last commit // find the last commit
fun getGitHashLastCommit(): String { fun getGitHashLastCommit(): String {

View File

@ -3,9 +3,9 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins { plugins {
id("org.springframework.boot") version "2.5.0" apply false id("org.springframework.boot") version "2.5.0" 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.5.0" apply false kotlin("jvm") version "1.5.10" apply false
kotlin("plugin.spring") version "1.5.0" apply false kotlin("plugin.spring") version "1.5.10" apply false
kotlin("plugin.jpa") version "1.5.0" apply false kotlin("plugin.jpa") version "1.5.10" apply false
} }
allprojects { allprojects {