-
Notifications
You must be signed in to change notification settings - Fork 67
/
libraries.gradle
17 lines (12 loc) · 889 Bytes
/
libraries.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
ext {
libraries = [
springBootConfigurationProcessor: 'org.springframework.boot:spring-boot-configuration-processor:1.2.5.RELEASE',
springBootWeb : 'org.springframework.boot:spring-boot-starter-web:1.2.5.RELEASE',
springCloudRibbon : 'org.springframework.cloud:spring-cloud-starter-ribbon:1.0.3.RELEASE',
springCloudEureka : 'org.springframework.cloud:spring-cloud-starter-eureka:1.0.3.RELEASE',
springCloudEurekaServer : 'org.springframework.cloud:spring-cloud-starter-eureka-server:1.0.3.RELEASE',
springBootTest : 'org.springframework.boot:spring-boot-starter-test:1.2.5.RELEASE',
junit : 'junit:junit:4.12',
mockito : 'org.mockito:mockito-all:1.10.19'
]
}