-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
54 lines (40 loc) · 1.55 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
plugins {
id 'java'
}
group 'com.dk'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
test {
testLogging {
events "started", "passed", "skipped", "failed"
showStandardStreams = true
exceptionFormat = "full"
}
useJUnitPlatform()
//testLogging.showStandardStreams = true
//testLogging.exceptionFormat = 'full'
}
dependencies {
// Implementation
implementation group: 'eu.benschroeder', name: 'mockito-extension', version: '4.3.0'
implementation 'org.apache.logging.log4j:log4j-api:2.18.0'
// Test Implementation
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.9.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.9.0'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.9.0'
testImplementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.18.0'
testImplementation 'org.assertj:assertj-core:3.23.1'
testImplementation 'org.hamcrest:hamcrest:2.2'
testImplementation 'org.skyscreamer:jsonassert:1.5.1'
//testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-migrationsupport', version: '5.9.0'
// testImplementation group: 'org.mockito', name: 'mockito-junit-jupiter', version: '4.6.1'
// testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.6.1'
compileOnly 'org.projectlombok:lombok:1.18.24'
// Test RuntimeOnly
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}