-
Notifications
You must be signed in to change notification settings - Fork 21
/
libraries.gradle
20 lines (13 loc) · 957 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',
springCloudZuul : 'org.springframework.cloud:spring-cloud-starter-zuul:1.0.3.RELEASE',
springBootWeb : 'org.springframework.boot:spring-boot-starter-web:1.2.5.RELEASE',
springBootTest : 'org.springframework.boot:spring-boot-starter-test:1.2.5.RELEASE',
springDataCassandra : 'org.springframework.data:spring-data-cassandra:1.2.2.RELEASE',
cassandraUnit : 'org.cassandraunit:cassandra-unit-spring:2.1.9.2',
cassandraDriver : 'com.datastax.cassandra:cassandra-driver-core:2.1.7.1',
junit : 'junit:junit:4.12',
mockito : 'org.mockito:mockito-all:1.10.19'
]
}