forked from codeforamerica/open311_java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (28 loc) · 1001 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'
repositories {
jcenter()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.squareup.okhttp3:okhttp:3.4.1'
compile 'com.google.code.gson:gson:2.7'
compile group: 'joda-time', name: 'joda-time', version: '2.9.1'
compile group: 'net.iharder', name: 'base64', version: '2.3.8'
compile group: 'com.google.android', name: 'android', version: '2.1.2'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.5'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.5'
testCompile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
sourceCompatibility = JavaVersion.VERSION_1_6
targetCompatibility = JavaVersion.VERSION_1_6
}
test {
testLogging {
exceptionFormat "short"
showCauses false
showExceptions false
showStandardStreams false
showStackTraces false
events "failed", "standardOut", "standardError"
}
}