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.1.0"
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
configure(allprojects){
ext.slf4jVersion = '1.7.12'
ext.logbackVersion = '1.1.7'
}
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
dependencies {
testCompile 'org.apache.httpcomponents:httpclient:4.1.1'
testCompile 'commons-io:commons-io:2.5'
testCompile('com.marklogic:marklogic-jena:1.0.0') {
//exclude(group: 'org.slf4j')
exclude(group: 'ch.qos.logback')
exclude(group: 'log4j')
}
testCompile 'com.jayway.restassured:rest-assured:2.4.1'
testCompile 'xmlunit:xmlunit:1.6'
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.4.1'
testCompile 'ch.qos.logback:logback-classic:1.1.7'
}
test {
systemProperties System.properties
testClassesDir file('build/classes/test')
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.6'
}