-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (31 loc) · 933 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'java'
}
group 'guru.springframework'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
mavenCentral()
}
ext {
junitVersion = '5.3.1'
mockitoVersion = '2.23.0'
}
dependencies {
compile 'javax.validation:validation-api:2.0.1.Final'
compile 'org.apache.commons:commons-lang3:3.8.1'
testCompile "org.junit.jupiter:junit-jupiter-api:${junitVersion}"
testCompile "org.junit.jupiter:junit-jupiter-engine:${junitVersion}"
testCompile "org.junit.jupiter:junit-jupiter-params:${junitVersion}"
testCompile 'org.assertj:assertj-core:3.11.1'
testCompile 'org.hamcrest:hamcrest-library:1.3'
testCompile "org.mockito:mockito-core:${mockitoVersion}"
testCompile "org.mockito:mockito-junit-jupiter:${mockitoVersion}"
}
test {
useJUnitPlatform()
testLogging.showStandardStreams = true
testLogging {
events "passed", "skipped", "failed"
}
}