forked from Nike-Inc/riposte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
22 lines (20 loc) · 845 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
evaluationDependsOn(':')
dependencies {
compile(
project(":riposte-core"),
"com.netflix.eureka:eureka-client:$eurekaClientVersion"
)
testCompile (
project(":riposte-guice"),
project(":riposte-core").sourceSets.test.output,
"org.assertj:assertj-core:$assertJVersion",
"junit:junit:$junitVersion",
"org.mockito:mockito-core:$mockitoVersion",
"io.rest-assured:rest-assured:$restAssuredVersion",
"ch.qos.logback:logback-classic:$logbackVersion",
"ch.qos.logback:logback-core:$logbackVersion",
"uk.org.lidalia:slf4j-test:$slf4jTestVersion",
"com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion",
"com.tngtech.java:junit-dataprovider:$junitDataproviderVersion",
)
}