forked from intercom/intercom-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
65 lines (56 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
buildscript {
repositories {
jcenter()
mavenCentral()
}
//noinspection GroovyAssignabilityCheck
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
classpath 'org.ajoberstar:grgit:1.9.3'
}
}
allprojects {
apply plugin: 'idea'
}
subprojects {
buildscript {
repositories {
jcenter()
mavenCentral()
}
//noinspection GroovyAssignabilityCheck
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.+'
classpath 'org.ajoberstar:grgit:1.9.3'
}
}
repositories {
jcenter()
mavenCentral()
}
ext {
jacksonVersion = '2.9.6'
powermockVersion = '1.6.6'
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'com.jfrog.bintray'
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:$jacksonVersion"
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"
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.9'
}