forked from Netflix/Prana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (39 loc) · 1.34 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
plugins {
id 'nebula.netflixoss' version '2.2.10'
}
group = "com.netflix.prana"
repositories {
jcenter()
}
apply plugin: 'java'
apply plugin: 'application'
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
dependencies {
compile "org.slf4j:slf4j-api:${slf4j_version}"
compile 'com.netflix.ribbon:ribbon:2.0-RC9'
compile 'com.netflix.ribbon:ribbon-eureka:2.0-RC9'
compile 'com.netflix.ribbon:ribbon-transport:2.0-RC9'
compile 'com.netflix.karyon:karyon-governator:2.1.00-RC5'
compile 'com.netflix.karyon:karyon-eureka:2.1.00-RC5'
compile 'com.netflix.karyon:karyon-servo:2.1.00-RC5'
compile 'com.netflix.karyon:karyon-archaius:2.1.00-RC5'
compile 'com.netflix.karyon:karyon-admin-web:2.1.00-RC5'
compile 'com.netflix.blitz4j:blitz4j:1.35'
compile 'com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.3.3'
compile 'com.fasterxml.jackson.core:jackson-core:2.3.3'
compile 'com.fasterxml.jackson.core:jackson-databind:2.3.3'
compile 'args4j:args4j:2.0.28'
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-all:1.9.5'
}
test {
testLogging {
exceptionFormat = 'full'
}
}
run {
systemProperty 'eureka.validateInstanceId', 'false'
systemProperty 'eureka.serviceUrl.default', 'http://localhost:8080/eureka/v2/'
}
mainClassName = "com.netflix.prana.Main"