forked from marklogic/entity-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (39 loc) · 1.18 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
plugins {
id "com.marklogic.ml-gradle" version "2.7.3"
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
configure(allprojects){
ext.slf4jVersion = '1.7.22'
ext.logbackVersion = '1.1.9'
}
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
dependencies {
testCompile 'org.apache.httpcomponents:httpclient:4.5.2'
testCompile 'commons-io:commons-io:2.5'
testCompile('com.marklogic:marklogic-jena:3.0.2') {
exclude(group: 'ch.qos.logback')
exclude(group: 'log4j')
}
testCompile 'io.rest-assured:rest-assured:3.0.3'
testCompile 'org.xmlunit:xmlunit-core:2.3.0'
testCompile 'org.xmlunit:xmlunit-matchers:2.3.0'
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.8.0'
testCompile group: 'ch.qos.logback', name: 'logback-classic', version: logbackVersion
}
test {
systemProperties System.properties
testClassesDir file('build/classes/test')
}
}
task wrapper(type: Wrapper) {
gradleVersion = '3.5'
}