File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
+ id ' org.springframework.boot' version ' 2.2.6.RELEASE'
3
+ id ' io.spring.dependency-management' version ' 1.0.9.RELEASE'
2
4
id ' java'
3
5
}
4
6
@@ -9,9 +11,13 @@ sourceCompatibility = 1.8
9
11
10
12
repositories {
11
13
mavenCentral()
14
+ jcenter()
12
15
}
13
16
14
17
dependencies {
18
+ compile ' org.springframework.boot:spring-boot-starter-web'
19
+ compile group : ' org.apache.commons' , name : ' commons-lang3' , version : ' 3.10'
20
+ compile(' com.fasterxml.jackson.datatype:jackson-datatype-jsr310' )
15
21
compileOnly ' org.projectlombok:lombok:1.18.12'
16
22
compile group : ' org.apache.commons' , name : ' commons-lang3' , version : ' 3.10'
17
23
annotationProcessor ' org.projectlombok:lombok:1.18.12'
@@ -20,3 +26,6 @@ dependencies {
20
26
// https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
21
27
testCompile group : ' org.mockito' , name : ' mockito-junit-jupiter' , version : ' 3.3.3'
22
28
}
29
+ test {
30
+ useJUnitPlatform()
31
+ }
You can’t perform that action at this time.
0 commit comments