forked from intercom/intercom-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
59 lines (50 loc) · 1.25 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
buildscript {
repositories {
jcenter()
mavenCentral()
}
//noinspection GroovyAssignabilityCheck
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.6'
classpath 'org.ajoberstar:gradle-git:0.10.0'
}
}
allprojects {
apply plugin: 'idea'
}
subprojects {
buildscript {
repositories {
jcenter()
mavenCentral()
}
//noinspection GroovyAssignabilityCheck
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.6'
classpath 'org.ajoberstar:gradle-git:0.10.0'
}
}
repositories {
jcenter()
mavenCentral()
}
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:2.4.2'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.4.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.2'
compile 'com.google.guava:guava:17.0'
compile 'org.slf4j:slf4j-api:1.7.7'
compile 'commons-codec:commons-codec:1.9'
testCompile 'junit:junit:4.11'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
}