forked from Netflix/netflix-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
82 lines (68 loc) · 2.23 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Establish version and status
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name
buildscript {
repositories { mavenCentral() }
apply from: file('gradle/buildscript.gradle'), to: buildscript
}
allprojects {
repositories { mavenCentral() }
}
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'eclipse'
apply from: file('gradle/convention.gradle')
apply from: file('gradle/maven.gradle')
//apply from: file('gradle/check.gradle')
apply from: file('gradle/license.gradle')
apply from: file('gradle/release.gradle')
subprojects {
group = "com.netflix.${githubProjectName}" // TEMPLATE: Set to organization of project
dependencies {
compile 'org.slf4j:slf4j-api:1.6.4'
testCompile 'junit:junit:4.10'
testCompile 'log4j:log4j:1.2.16'
}
}
project(':netflix-commons-util') {
}
project(':netflix-infix') {
dependencies {
compile 'commons-jxpath:commons-jxpath:1.3'
compile 'joda-time:joda-time:2.3'
compile 'javax.servlet:servlet-api:2.5'
compile 'org.antlr:antlr-runtime:3.4'
compile 'com.google.code.findbugs:annotations:2.0.0'
compile 'com.google.guava:guava:14.0.1'
compile 'com.google.code.gson:gson:2.1'
testCompile 'org.mockito:mockito-core:1.8.5'
}
}
project(':netflix-eventbus') {
dependencies {
compile project(':netflix-infix')
compile 'com.netflix.servo:servo-core:0.5.3'
compile 'org.apache.commons:commons-math:2.2'
compile 'com.netflix.archaius:archaius-core:0.3.3'
}
}
project(':netflix-eventbus-bridge') {
dependencies {
compile project(':netflix-eventbus')
compile "com.google.inject:guice:3.0"
}
}
project(':netflix-statistics') {
dependencies {
compile 'com.google.code.findbugs:annotations:2.0.0'
}
}
project(':netflix-jersey-guice') {
dependencies {
compile "com.google.inject:guice:3.0"
compile "com.sun.jersey:jersey-core:1.11"
compile "com.sun.jersey:jersey-json:1.11"
compile "com.sun.jersey:jersey-server:1.11"
compile "javax.servlet:servlet-api:2.5"
compile 'com.google.code.gson:gson:2.1'
}
}