-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (33 loc) · 1.02 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
plugins {
id 'groovy'
id 'eclipse'
id 'jacoco'
}
group = 'se.primenta.common'
sourceCompatibility = 1.8
repositories {
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
compile('com.google.guava:guava:19.0')
compile('org.apache.commons:commons-lang3:3.5')
compile('org.apache.commons:commons-collections4:4.1')
compile('org.apache.logging.log4j:log4j-api:2.8')
compile('org.apache.logging.log4j:log4j-core:2.8')
compile('com.datastax.cassandra:cassandra-driver-core:+')
compile('com.datastax.cassandra:cassandra-driver-mapping:+')
compile('com.datastax.cassandra:cassandra-driver-extras:+')
testCompile 'junit:junit:4.12'
testCompile('org.assertj:assertj-core:3.6.2')
testCompile('org.codehaus.groovy:groovy-all:2.4.1')
testCompile('org.spockframework:spock-core:1.0-groovy-2.4')
testCompile('com.github.svenakela:Cassandra-Testbase:1.2.0')
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}