-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (39 loc) · 1.25 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "io.ratpack:ratpack-gradle:${ratpackVersion}"
classpath "com.github.jengelman.gradle.plugins:shadow:1.2.2"
}
}
apply plugin: 'io.ratpack.ratpack-groovy'
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'idea'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
maven { url 'http://dl.bintray.com/aaronzirbes/maven' }
}
test {
jvmArgs '-Duser.timezone=UTC'
}
run {
jvmArgs '-Dlogging.level.org.zirbes.eventsource=INFO'
}
dependencies {
compile ratpack.dependency('groovy')
compile ratpack.dependency('jackson-guice')
compile ratpack.dependency('rx')
compile 'org.elasticsearch:elasticsearch:1.7.2'
compile 'com.datastax.cassandra:cassandra-driver-core:2.1.7.1'
compile 'com.fasterxml.jackson.datatype:jackson-datatype-joda:2.4.0'
compile 'com.thirdchannel:eventsource:0.2.0'
compile 'joda-time:joda-time:2.8.2'
springloaded "org.springframework:springloaded:1.2.3.RELEASE"
runtime 'org.slf4j:slf4j-simple:1.7.12'
testCompile "org.spockframework:spock-core:${spockVersion}"
testCompile 'cglib:cglib-nodep:3.1'
testCompile 'org.objenesis:objenesis:2.1'
}