From d58ded9eadd9fd94482ecbd23f08c58f180bf045 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Fri, 24 Dec 2021 10:35:37 +0700 Subject: [PATCH] Update gradle --- build.gradle.kts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 907644d..23cb808 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.1" apply false + id("org.springframework.boot") version "2.6.2" apply false id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false - kotlin("jvm") version "1.6.0" apply false - kotlin("plugin.spring") version "1.6.0" apply false - // kotlin("plugin.jpa") version "1.6.0" apply false + kotlin("jvm") version "1.6.10" apply false + kotlin("plugin.spring") version "1.6.10" apply false + // kotlin("plugin.jpa") version "1.6.10" apply false } allprojects { @@ -14,6 +14,9 @@ allprojects { // Fixed Zero-Day CVE-2021-45105: https://cubetiq.atlassian.net/browse/CERT-4 ext["log4j2.version"] = "2.17.0" + // Fixed Zero-Day CVE-2021-42550: https://cubetiq.atlassian.net/browse/CERT-5 + ext["logback.version"] = "1.2.9" + repositories { maven("https://m.ctdn.net") }