forked from mxdldev/spring-cloud-flycloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
21 lines (19 loc) · 926 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
dependencies {
compile 'org.springframework.cloud:spring-cloud-starter-config'
compile 'org.springframework.cloud:spring-cloud-starter-turbine'
compile 'org.springframework.cloud:spring-cloud-starter-hystrix-dashboard'
compile 'org.springframework.cloud:spring-cloud-starter-hystrix'
compile 'org.springframework.boot:spring-boot-starter-actuator'
compile 'org.springframework.boot:spring-boot-starter-security'
compile 'de.codecentric:spring-boot-admin-server-ui:1.5.7'
compile 'de.codecentric:spring-boot-admin-server-ui-turbine:1.5.7'
compile 'de.codecentric:spring-boot-admin-server-ui-hystrix:1.5.7'
compile 'de.codecentric:spring-boot-admin-server-ui-login:1.5.0'
compile 'de.codecentric:spring-boot-admin-server-ui-activiti:1.5.0'
compile 'org.jolokia:jolokia-core'
}
jar {
manifest {
attributes 'Main-Class': 'com.fly.admin.AdminServiceApplication'
}
}