forked from jmnarloch/feign-oauth2-spring-cloud-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibraries.gradle
20 lines (13 loc) · 844 Bytes
/
libraries.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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',
springCloudFeign: 'org.springframework.cloud:spring-cloud-starter-feign:1.0.3.RELEASE',
springCloudRibbon: 'org.springframework.cloud:spring-cloud-starter-ribbon:1.0.3.RELEASE',
springOAuth2: 'org.springframework.security.oauth:spring-security-oauth2:2.0.7.RELEASE',
feignCore: 'com.netflix.feign:feign-core:8.7.1',
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'
]
}