forked from Marklogic-retired/marklogic-data-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (33 loc) · 766 Bytes
/
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
allprojects {
task resolveAllDependencies {
doLast {
configurations.all {
if (it.isCanBeResolved()) {
it.resolve()
}
}
}
}
}
subprojects {
apply plugin: 'java'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
repositories {
mavenCentral()
mavenLocal()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
testCompile 'org.apache.httpcomponents:httpclient:4.3.5'
}
test{
testLogging{
events 'started','passed', 'skipped', 'failed'
exceptionFormat 'full'
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.5'
}