-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathbuild.gradle
41 lines (35 loc) · 1022 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
39
40
41
plugins {
id 'idea'
id 'signing'
}
subprojects {
repositories {
mavenCentral()
}
ext {
jacksonVersion = '2.9.10'
jacksonDatabindVersion = "$jacksonVersion.8"
powermockVersion = '1.6.6'
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'signing'
sourceCompatibility = 1.7
targetCompatibility = 1.7
//noinspection GroovyAssignabilityCheck
dependencies {
compile "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
compile "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion"
compile "com.fasterxml.jackson.core:jackson-databind:$jacksonDatabindVersion"
compile "com.google.guava:guava:17.0"
compile "org.slf4j:slf4j-api:1.7.25"
compile "commons-codec:commons-codec:1.9"
testCompile "junit:junit:4.12"
testCompile "org.powermock:powermock-module-junit4:$powermockVersion"
testCompile "org.powermock:powermock-api-mockito:$powermockVersion"
}
}
wrapper {
gradleVersion = '4.9'
}