forked from crate/crate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (31 loc) · 811 Bytes
/
Copy pathbuild.gradle
File metadata and controls
40 lines (31 loc) · 811 Bytes
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
apply plugin: 'java'
archivesBaseName = 'crate-udc'
// we do not want to have elasticsearch here, since we provide it in :es
configurations {
all*.exclude group: 'org.elasticsearch'
}
repositories {
mavenCentral()
}
dependencies {
compile project(':es')
compile project(':core')
testCompile project(':testing')
}
test {
// show standard out and standard error of the test JVM(s) on the console
testLogging.showStandardStreams = true
testLogging.exceptionFormat = 'full'
// force run, see: http://gradle.1045684.n5.nabble.com/how-does-gradle-decide-when-to-run-tests-td3314172.html
outputs.upToDateWhen { false }
jacoco {
excludes = [ "*Test*" ]
}
}
sourceSets {
test {
resources {
srcDir 'src/test/java'
}
}
}