@@ -10,13 +10,18 @@ version = '3.4.4'
1010targetCompatibility = 17
1111sourceCompatibility = 17
1212
13+ ext[' log4j2.version' ] = ' 2.20.0'
14+ ext[' tomcat.version' ] = ' 9.0.71'
15+ ext[' jackson.version' ] = ' 2.14.2'
16+
1317// compileJava.options.fork = true
1418// compileJava.options.forkOptions.executable = 'C:\\Program Files\\Java\\jdk1.8.0_191\\bin\\javac'
1519
1620configurations {
1721 compileOnly {
1822 extendsFrom annotationProcessor
1923 }
24+ all* . exclude module : ' spring-boot-starter-logging'
2025}
2126
2227repositories {
@@ -29,15 +34,16 @@ jar {
2934
3035
3136dependencies {
32- implementation ' org.springframework.boot:spring-boot-starter:2.6.8'
33- implementation ' org.springframework.boot:spring-boot-starter-web:2.6.8'
34- implementation ' org.springframework.boot:spring-boot-starter-data-jpa:2.6.9'
35- implementation ' org.springframework.boot:spring-boot-starter-security:2.6.8'
36- implementation ' org.springframework.boot:spring-boot-starter-actuator:2.6.8'
37- implementation ' org.springframework.boot:spring-boot-starter-mail:2.6.8'
38- implementation ' org.springframework:spring-tx:5.3.9'
39- implementation ' org.postgresql:postgresql:42.2.27'
40- implementation ' com.fasterxml.jackson.core:jackson-core:2.13.1'
37+ implementation ' org.springframework.boot:spring-boot-starter:2.7.8'
38+ implementation ' org.springframework.boot:spring-boot-starter-log4j2:2.7.8'
39+ implementation ' org.springframework.boot:spring-boot-starter-web:2.7.8'
40+ implementation ' org.springframework.boot:spring-boot-starter-data-jpa:2.7.8'
41+ implementation ' org.springframework.boot:spring-boot-starter-security:2.7.8'
42+ implementation ' org.springframework.boot:spring-boot-starter-actuator:2.7.8'
43+ implementation ' org.springframework.boot:spring-boot-starter-mail:2.7.8'
44+ implementation ' org.springframework:spring-tx:5.3.25'
45+ implementation ' org.postgresql:postgresql:42.3.8'
46+ implementation ' com.fasterxml.jackson.core:jackson-core:2.14.2'
4147 implementation ' org.projectlombok:lombok:1.18.20'
4248 implementation group : ' org.apache.commons' , name : ' commons-lang3' , version : ' 3.12.0'
4349 implementation group : ' io.springfox' , name : ' springfox-boot-starter' , version : ' 3.0.0'
@@ -66,7 +72,7 @@ dependencies {
6672
6773test {
6874// useJUnitPlatform()
69- afterSuite {desc , result ->
75+ afterSuite { desc , result ->
7076 if (! desc. parent) {
7177 println (" ${ result.resultType} " +
7278 " (${ result.testCount} tests, " +
0 commit comments