-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (46 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'scala'
apply plugin: 'checkstyle'
apply plugin: 'jacoco'
repositories {
mavenCentral()
}
checkstyle {
checkstyleTest.enabled = false
}
dependencies {
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.3'
compile group: 'commons-io', name: 'commons-io', version: '2.6'
// jackson
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.2'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.2'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.2'
// lombok
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.18'
// log4j2
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.9.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.9.1'
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.9.1'
compile group: 'org.slf4j', name: 'log4j-over-slf4j', version: '1.7.25'
// Guice dependency injection
compile group: 'com.google.inject', name: 'guice', version: '4.1.0'
// Guava
compile group: 'com.google.guava', name: 'guava', version: '23.4-jre'
// spark
compile group: 'org.scala-sbt', name: 'zinc_2.12', version: '1.0.3'
compile group: 'org.scala-lang', name: 'scala-library', version: '2.12.4'
compile group: 'org.apache.spark', name: 'spark-core_2.11', version: '2.2.0'
// Groovy
compile group: 'org.codehaus.groovy', name: 'groovy', version: '2.4.12'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.spockframework', name: 'spock-core', version: '1.1-groovy-2.4'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled false
}
}
check.dependsOn jacocoTestReport