-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
55 lines (44 loc) · 1.6 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
55
plugins {
id 'java'
}
apply plugin: 'java'
group 'com.learnwiremock'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {url "https://jitpack.io"}
}
dependencies {
//webclient-dependencies
implementation 'org.springframework:spring-webflux:5.1.8.RELEASE'
implementation 'io.projectreactor.netty:reactor-netty:0.8.9.RELEASE'
//lombok
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation 'org.slf4j:slf4j-api:1.7.26'
implementation 'org.slf4j:slf4j-simple:1.7.26'
//jackson
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.9'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.9'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.9'
implementation 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.9'
//junit5-dependencies
testCompileOnly('org.projectlombok:lombok:1.18.30')
testAnnotationProcessor('org.projectlombok:lombok:1.18.30')
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
// wiremock
testImplementation "com.github.tomakehurst:wiremock-jre8-standalone:2.24.1"
implementation "com.github.JensPiegsa:wiremock-extension:0.4.0"
}
apply plugin: "jacoco"
test {
useJUnitPlatform()
finalizedBy jacocoTestReport // report is always generated after tests run
}
jacoco {
toolVersion = "0.8.11"
}
jacocoTestReport {
dependsOn test // tests are required to run before generating the report
}