-
Notifications
You must be signed in to change notification settings - Fork 65
/
build.gradle
37 lines (32 loc) · 1.3 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
30
31
32
33
34
35
36
37
evaluationDependsOn(':')
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
ext {
jersey2Version = '2.23.2'
}
dependencies {
implementation(
project(":wingtips-servlet-api"),
project(":wingtips-jersey2"),
"ch.qos.logback:logback-classic:$logbackVersion",
"org.glassfish.jersey.core:jersey-server:$jersey2Version",
"org.glassfish.jersey.containers:jersey-container-servlet:$jersey2Version",
"org.eclipse.jetty:jetty-server:$jettyVersion",
"org.eclipse.jetty:jetty-servlet:$jettyVersion"
)
testImplementation(
"junit:junit:$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",
// 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",
)
}
apply plugin: "application"
mainClassName = "com.nike.wingtips.jersey2sample.Main"
run {
systemProperties = System.getProperties()
}