Update 'build.gradle.kts'

This commit is contained in:
Sambo Chea 2021-04-22 18:27:49 +07:00
parent 828d679864
commit 8838044042

View File

@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
val springBootVersion = "2.4.4"
val springBootVersion = "2.4.5"
repositories {
mavenCentral()
@ -13,11 +13,11 @@ buildscript {
}
plugins {
id("org.springframework.boot") version "2.4.4" apply false
id("org.springframework.boot") version "2.4.5" apply false
id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false
kotlin("jvm") version "1.4.31" apply false
kotlin("plugin.spring") version "1.4.31" apply false
kotlin("plugin.jpa") version "1.4.31" 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
}
allprojects {