-
Notifications
You must be signed in to change notification settings - Fork 65
/
build.gradle
29 lines (26 loc) · 1.05 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
evaluationDependsOn(':')
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
api(
project(":wingtips-core")
)
compileOnly(
"javax.servlet:javax.servlet-api:$servletApiVersion",
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion"
)
testImplementation(
"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",
"org.jetbrains:annotations:$jetbrainsAnnotationsVersion",
"org.eclipse.jetty:jetty-webapp:$jettyVersion",
// The jaxb-api is needed for building on the java 11 JDK as these classes were moved out of the Java SE libs.
"javax.xml.bind:jaxb-api:$jaxbApiVersion",
)
}