-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
31 lines (25 loc) · 831 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
27
28
29
30
31
apply plugin: "java"
apply plugin: "application"
apply plugin: 'idea'
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
tasks.withType(Test) {
systemProperty "file.encoding", "UTF-8"
}
repositories {
mavenCentral()
}
dependencies {
compile 'com.github.tomakehurst:wiremock-standalone:2.0.5-beta'
compile "io.dropwizard:dropwizard-core:0.9.0-rc4"
compile 'org.glassfish.jersey.core:jersey-client:2.18'
compile 'com.fasterxml.jackson.core:jackson-core:2.6.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.6.2'
compile 'com.jayway.jsonpath:json-path:2.0.0'
compile 'org.shamdata:sham:0.3'
testCompile 'junit:junit:4.12'
testCompile "org.hamcrest:hamcrest-all:1.3"
compile "io.dropwizard:dropwizard-testing:0.9.0-rc4"
}