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() }