forked from spinnaker/orca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (29 loc) · 1.2 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
apply plugin: 'groovy'
repositories {
jcenter()
mavenCentral()
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
final GROOVY_VERSION = "2.3.0"
final SPRING_VERSION = "4.0.4.RELEASE"
final BATCH_VERSION = "3.0.0.RC1"
final GUAVA_VERSION = "17.0"
final RXJAVA_VERSION = "0.18.3"
final RETROFIT_VERSION = "1.5.1"
final SPOCK_VERSION = "0.7-groovy-2.0"
final LOGBACK_VERSION = "1.0.13"
final SLF4J_VERSION = "1.7.5"
compile "org.codehaus.groovy:groovy:$GROOVY_VERSION:indy"
compile "org.springframework.batch:spring-batch-core:$BATCH_VERSION"
compile "com.google.guava:guava:$GUAVA_VERSION"
compile "com.netflix.rxjava:rxjava-core:$RXJAVA_VERSION"
compile "com.squareup.retrofit:retrofit:$RETROFIT_VERSION"
compile "ch.qos.logback:logback-classic:$LOGBACK_VERSION"
compile "org.slf4j:jcl-over-slf4j:$SLF4J_VERSION"
testCompile "org.spockframework:spock-core:$SPOCK_VERSION"
testCompile "org.spockframework:spock-spring:$SPOCK_VERSION"
testCompile "org.springframework.batch:spring-batch-test:$BATCH_VERSION"
testCompile "org.springframework:spring-test:$SPRING_VERSION"
}
configurations.all*.exclude module: "groovy-all"