forked from Netflix/blitz4j
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (34 loc) · 961 Bytes
/
build.gradle
File metadata and controls
42 lines (34 loc) · 961 Bytes
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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'nebula.netflixoss' version '2.2.9'
id 'nebula.provided-base' version '2.0.1'
}
apply plugin: 'nebula.netflixoss'
apply plugin: 'nebula.provided-base'
apply plugin: 'java'
// 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}"
allprojects {
repositories {
mavenCentral()
}
}
sourceCompatibility = 1.7
targetCompatibility = 1.7
test {
include 'com/netflix/blitz4j/**'
}
dependencies {
compile 'com.netflix.servo:servo-core:0.4.36'
compile 'com.netflix.archaius:archaius-core:0.7.3'
compile 'org.slf4j:slf4j-api:1.7.3'
compile 'log4j:log4j:1.2.17'
compile 'commons-collections:commons-collections:3.2.1'
testCompile 'junit:junit:4.11'
testCompile 'org.slf4j:slf4j-log4j12:1.7.3'
}