File tree Expand file tree Collapse file tree 5 files changed +7
-11
lines changed
src/main/java/ss/mod/demo/api/model/request Expand file tree Collapse file tree 5 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ dependencies {
9
9
api " com.smartsensesolutions:commons-dao:${ commonsDaoVersion} "
10
10
api " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion} "
11
11
api " com.fasterxml.jackson.core:jackson-core:${ jacksonVersion} "
12
- api ' org.apache.commons:commons-text:1.11.0'
13
- api ' org.apache.commons:commons-collections4:4.4'
14
12
api ' org.springframework.boot:spring-boot-starter-validation'
15
13
api ' org.springframework.boot:spring-boot-starter-web' // if you have upload function
16
14
api ' org.springframework.boot:spring-boot-starter-data-jpa'
Original file line number Diff line number Diff line change 11
11
import com .smartsensesolutions .java .commons .sort .SortType ;
12
12
import lombok .Getter ;
13
13
import lombok .Setter ;
14
- import org .apache . commons . collections4 .CollectionUtils ;
14
+ import org .springframework . util .CollectionUtils ;
15
15
import ss .mod .demo .api .model .BaseModel ;
16
16
17
17
import java .io .Serial ;
Original file line number Diff line number Diff line change @@ -12,11 +12,8 @@ dependencies {
12
12
implementation " com.fasterxml.jackson.core:jackson-core:${ jacksonVersion} "
13
13
implementation ' org.springframework.cloud:spring-cloud-starter-openfeign'
14
14
implementation ' org.springframework.security:spring-security-oauth2-resource-server'
15
- implementation ' com.neovisionaries:nv-i18n:1.29'
16
- implementation ' org.apache.commons:commons-text:1.11.0'
17
15
implementation ' jakarta.servlet:jakarta.servlet-api'
18
- implementation ' org.apache.poi:poi:5.2.5'
19
- implementation ' org.apache.poi:poi-ooxml:5.2.5'
16
+
20
17
}
21
18
22
19
jar {
@@ -29,4 +26,4 @@ dependencyManagement {
29
26
mavenBom " org.springframework.cloud:spring-cloud-dependencies:${ springCloudVersion} "
30
27
mavenBom(" org.testcontainers:testcontainers-bom:${ testContainerVersion} " )
31
28
}
32
- }
29
+ }
Original file line number Diff line number Diff line change @@ -60,15 +60,13 @@ dependencyManagement {
60
60
}
61
61
}
62
62
63
- jacocoTestReport {
64
- dependsOn test
65
- }
66
63
67
64
jacoco {
68
65
toolVersion = " ${ jacocoVersion} "
69
66
}
70
67
71
68
jacocoTestReport {
69
+ dependsOn test
72
70
reports {
73
71
xml. required = false
74
72
csv. required = false
Original file line number Diff line number Diff line change @@ -82,6 +82,9 @@ messages:
82
82
path : classpath:i18n/messages
83
83
84
84
spring :
85
+ threads :
86
+ virtual :
87
+ enabled : true
85
88
jpa :
86
89
hibernate :
87
90
ddl-auto : update
You can’t perform that action at this time.
0 commit comments