-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
51 lines (37 loc) · 1.54 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
/*
allprojects {
group = 'com.bootnetflix'
version = '0.0.1-SNAPSHOT'
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
project.ext {
springBootVersion = '1.2.3.RELEASE'
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/libs-snapshot-local" }
maven { url "https://repo.spring.io/libs-milestone-local" }
maven { url "https://repo.spring.io/libs-release-local" }
}
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-eureka:1.0.2.RELEASE'
compile 'org.springframework.cloud:spring-cloud-starter-eureka-server:1.0.2.RELEASE'
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test:$project.ext.springBootVersion")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile ('javax.inject:javax.inject:1')
compile ('org.springframework.cloud:spring-cloud-starter-hystrix-dashboard:1.0.1.RELEASE')
compile('org.springframework.cloud:spring-cloud-starter-hystrix:1.0.1.RELEASE')
compile('com.goebl:david-webb:1.1.0')
compile('org.springframework.cloud:spring-cloud-starter-turbine-amqp:1.0.0.RELEASE')
compile("org.springframework.cloud:spring-cloud-starter-bus-amqp:1.0.0.RELEASE")
compile("org.springframework.cloud:spring-cloud-netflix-hystrix-amqp:1.0.0.RELEASE")
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.1'
}
*/