forked from Netflix/governator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (43 loc) · 1.69 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
// Establish version and status
ext.githubProjectName = rootProject.name // Change if github project name is not the same as the root project's name
group = "com.netflix.${githubProjectName}"
buildscript {
repositories {
mavenLocal()
mavenCentral() // maven { url 'http://jcenter.bintray.com' }
}
apply from: file('gradle/buildscript.gradle'), to: buildscript
}
allprojects {
repositories {
mavenCentral() // maven { url: 'http://jcenter.bintray.com' }
}
}
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 plugin: 'idea'
apply plugin: 'eclipse'
test {
useTestNG()
}
dependencies {
compile 'javax.inject:javax.inject:1'
compile 'com.google.guava:guava:11.0.1'
compile 'org.slf4j:slf4j-api:1.6.3'
compile 'org.hibernate:hibernate-validator:4.1.0.Final'
compile 'org.apache.xbean:xbean-finder:3.11.1'
compile 'org.apache.xbean:xbean-bundleutils:3.11.1'
compile 'asm:asm-all:3.2'
compile 'com.google.inject:guice:3.0'
compile 'com.google.inject.extensions:guice-multibindings:3.0'
compile 'com.netflix.archaius:archaius-core:0.4.1'
compile 'com.google.inject.extensions:guice-grapher:3.0' // should be provided - only if you want graphing
// if you are using Java 7 you can remove this and switch to the JDK version
compile 'org.codehaus.jsr166-mirror:jsr166y:1.7.0'
testCompile 'org.testng:testng:6.1.1'
testCompile 'org.mockito:mockito-core:1.8.5'
testCompile 'org.slf4j:slf4j-log4j12:1.6.1'
}