forked from Nike-Inc/wingtips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
26 lines (24 loc) · 914 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
evaluationDependsOn(':')
ext {
// Springboot requires Servlet API to be at least version 3.1
servletApiForTestsVersion = '3.1.0'
}
dependencies {
compile(
project(":wingtips-zipkin2"),
project(":wingtips-spring-boot")
)
compileOnly(
"javax.servlet:javax.servlet-api:$servletApiVersion",
"org.springframework.boot:spring-boot-autoconfigure:$springboot1Version"
)
testCompile(
"junit:junit-dep:$junitVersion",
"org.mockito:mockito-core:$mockitoVersion",
"ch.qos.logback:logback-classic:$logbackVersion",
"org.assertj:assertj-core:$assertJVersion",
"com.tngtech.java:junit-dataprovider:$junitDataproviderVersion",
"org.springframework.boot:spring-boot-starter-web:$springboot1Version",
"javax.servlet:javax.servlet-api:$servletApiForTestsVersion"
)
}