spring 버전 변경
This commit is contained in:
+8
-7
@@ -1,6 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.springframework.boot' version '2.5.14'
|
id 'org.springframework.boot' version '2.7.16'
|
||||||
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
id 'io.spring.dependency-management' version '1.1.3'
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'war'
|
id 'war'
|
||||||
// id "org.sonarqube" version "4.2.1.3168"
|
// id "org.sonarqube" version "4.2.1.3168"
|
||||||
@@ -13,7 +13,6 @@ jar.enabled = false
|
|||||||
bootWar.enabled = false
|
bootWar.enabled = false
|
||||||
war.enabled = true
|
war.enabled = true
|
||||||
|
|
||||||
ext['logback.version'] = '1.2.10'
|
|
||||||
group = 'com.eactive'
|
group = 'com.eactive'
|
||||||
version = '2.0.0'
|
version = '2.0.0'
|
||||||
sourceCompatibility = '1.8'
|
sourceCompatibility = '1.8'
|
||||||
@@ -22,6 +21,9 @@ targetCompatibility = 1.8
|
|||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
annotationProcessor
|
annotationProcessor
|
||||||
|
configureEach {
|
||||||
|
exclude module: 'spring-boot-starter-logging'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
compileJava {
|
compileJava {
|
||||||
@@ -34,15 +36,16 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
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.boot:spring-boot-starter-data-jpa'
|
||||||
implementation 'org.springframework.data:spring-data-envers'
|
implementation 'org.springframework.data:spring-data-envers'
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
||||||
implementation 'org.springframework.boot:spring-boot-starter-security'
|
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 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
|
||||||
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
|
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
|
||||||
implementation 'com.navercorp.lucy:lucy-xss-servlet:2.0.1'
|
implementation 'com.navercorp.lucy:lucy-xss-servlet:2.0.1'
|
||||||
@@ -67,8 +70,6 @@ bootJar {
|
|||||||
archiveFileName = "HTTPSimulator.jar"
|
archiveFileName = "HTTPSimulator.jar"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
test {
|
test {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user