From 1c1a052f3fe5fae3aa4e7132b7a5c310d08d65ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=98=84=EC=84=B1=ED=95=84?= Date: Fri, 27 Oct 2023 10:38:29 +0900 Subject: [PATCH] =?UTF-8?q?spring=20=EB=B2=84=EC=A0=84=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 20327b8..564d3c3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { - id 'org.springframework.boot' version '2.5.14' - id 'io.spring.dependency-management' version '1.0.11.RELEASE' + id 'org.springframework.boot' version '2.7.16' + id 'io.spring.dependency-management' version '1.1.3' id 'java' id 'war' // id "org.sonarqube" version "4.2.1.3168" @@ -13,7 +13,6 @@ jar.enabled = false bootWar.enabled = false war.enabled = true -ext['logback.version'] = '1.2.10' group = 'com.eactive' version = '2.0.0' sourceCompatibility = '1.8' @@ -22,6 +21,9 @@ targetCompatibility = 1.8 configurations { annotationProcessor + configureEach { + exclude module: 'spring-boot-starter-logging' + } } compileJava { @@ -34,15 +36,16 @@ repositories { } dependencies { - annotationProcessor "org.mapstruct:mapstruct-processor:1.5.3.Final" + annotationProcessor "org.mapstruct:mapstruct-processor:1.5.5.Final" - implementation 'org.mapstruct:mapstruct:1.5.3.Final' + implementation 'org.mapstruct:mapstruct:1.5.5.Final' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.springframework.data:spring-data-envers' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-validation' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-security' + implementation 'org.springframework.boot:spring-boot-starter-log4j2' implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect' implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5' implementation 'com.navercorp.lucy:lucy-xss-servlet:2.0.1' @@ -67,8 +70,6 @@ bootJar { archiveFileName = "HTTPSimulator.jar" } - - test { useJUnitPlatform() }