forked from Nike-Inc/backstopper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (35 loc) · 1.48 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
38
39
40
evaluationDependsOn(':')
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
test {
useJUnitPlatform()
}
dependencies {
implementation(
project(":backstopper-jersey1"),
project(":backstopper-custom-validators"),
"com.sun.jersey:jersey-servlet:$jersey1Version",
"com.sun.jersey:jersey-json:$jersey1Version",
"org.glassfish.jersey.media:jersey-media-json-jackson:$jersey2Version",
"ch.qos.logback:logback-classic:$logbackVersion",
"org.hibernate:hibernate-validator:$hibernateValidatorVersion",
"org.eclipse.jetty:jetty-webapp:$jettyVersion"
)
testImplementation(
project(":backstopper-reusable-tests-junit5"),
"org.junit.jupiter:junit-jupiter-api:$junit5Version",
"org.junit.jupiter:junit-jupiter-engine:$junit5Version",
"org.junit.jupiter:junit-jupiter-params:$junit5Version",
"org.mockito:mockito-core:$mockitoVersion",
"com.fasterxml.jackson.core:jackson-core:$jacksonVersion",
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion",
"ch.qos.logback:logback-classic:$logbackVersion",
"org.assertj:assertj-core:$assertJVersion",
"io.rest-assured:rest-assured:$restAssuredVersion"
)
}
apply plugin: "application"
mainClassName = "com.nike.backstopper.jersey1sample.Main"
run {
systemProperties = System.getProperties()
}