forked from Nike-Inc/wingtips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
25 lines (22 loc) · 871 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
evaluationDependsOn(':')
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
compile(
project(":wingtips-core"),
"org.apache.httpcomponents:httpclient:$apacheHttpClientVersion"
)
testCompile(
project(":wingtips-servlet-api"),
"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",
"io.rest-assured:rest-assured:$restAssuredVersion",
"commons-io:commons-io:$apacheCommonsIoVersion",
"org.springframework.boot:spring-boot-starter-web:$springbootVersion"
)
}