-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·32 lines (28 loc) · 885 Bytes
/
build.gradle
File metadata and controls
executable file
·32 lines (28 loc) · 885 Bytes
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
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
compile('com.google.guava:guava:27.0.1-jre')
compile('io.vavr:vavr:0.10.0')
compile('org.slf4j:slf4j-api:1.8.0-beta2')
compile('org.slf4j:slf4j-log4j12:1.8.0-beta2')
compile 'io.github.openfeign:feign-core:10.2.0'
compile 'io.github.openfeign:feign-jackson:10.2.0'
compile 'io.github.resilience4j:resilience4j-all:0.15.0'
compile 'io.github.resilience4j:resilience4j-feign:0.15.0'
compile 'org.ehcache:ehcache:3.7.1'
testImplementation('org.junit.jupiter:junit-jupiter:5.4.0')
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation'org.assertj:assertj-core:3.11.1'
testImplementation 'ru.lanwen.wiremock:wiremock-junit5:1.3.0'
testImplementation 'com.github.tomakehurst:wiremock:2.22.0'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}