-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (48 loc) · 1.72 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
// Establish version and status
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name
ext {
}
buildscript {
repositories { mavenCentral() }
apply from: file('gradle/buildscript.gradle'), to: buildscript
}
allprojects {
repositories {
mavenCentral()
maven {
url 'https://repository.apache.org/content/groups/public'
}
}
}
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'java'
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')
// apply from: file('gradle/netflix-oss.gradle')
subprojects {
group = "com.netflix.${githubProjectName}" // TEMPLATE: Set to organization of project
dependencies {
compile 'com.google.guava:guava:14.0'
compile 'com.google.code.findbugs:annotations:2.0.0'
compile 'com.google.inject:guice:3.0'
compile 'com.google.inject.extensions:guice-multibindings:3.0'
compile 'com.netflix.governator:governator:1.2.5'
compile 'commons-codec:commons-codec:1.3'
compile 'log4j:log4j:1.2.17'
compile 'org.slf4j:slf4j-api:1.7.2'
compile 'org.slf4j:slf4j-log4j12:1.7.2'
compile 'com.netflix.rxjava:rxjava-core:0.15.1'
compile 'commons-lang:commons-lang:2.6'
compile 'javax.ws.rs:jsr311-api:1.1.1'
}
}
project(':experiments-core') {
dependencies {
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:1.8.5'
}
}