-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
38 lines (29 loc) · 919 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
32
33
34
35
36
37
38
subprojects {
apply plugin: 'java'
// JDK
sourceCompatibility = 1.8
// Encoding
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
// Maven Repository
repositories {
mavenCentral()
}
// Dependencies
dependencies {
// Apache Commons
compile 'org.apache.commons:commons-lang3:3.3.2'
// Jackson
compile 'com.fasterxml.jackson.core:jackson-core:2.5.1'
compile 'com.fasterxml.jackson.core:jackson-databind:2.5.1'
// Logging
compile 'org.slf4j:slf4j-api:1.7.10'
compile 'ch.qos.logback:logback-core:1.1.2'
compile 'ch.qos.logback:logback-classic:1.1.2'
// JUnit
testCompile 'junit:junit:4.12'
// Catch-Exception
testCompile 'eu.codearte.catch-exception:catch-exception:1.4.4'
// Mockito
testCompile 'org.mockito:mockito-all:1.10.16'
}
}