-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle
39 lines (31 loc) · 993 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
apply plugin: 'eclipse'
apply plugin: 'scala'
apply from: 'eclipse.gradle'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
test {
testLogging {
events 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
exceptionFormat 'full'
}
}
dependencies {
compile 'org.slf4j:slf4j-api:1.7.12'
compile 'org.slf4j:slf4j-log4j12:1.7.12'
compile 'org.scala-lang:scala-library:2.11.8'
compile('org.apache.hadoop:hadoop-client:2.7.1') {
exclude group: 'javax.servlet'
exclude group: 'javax.servlet.jsp'
exclude group: 'org.mortbay.jetty'
}
compile('org.apache.spark:spark-core_2.11:2.1.1') {
exclude group: 'org.apache.hadoop'
}
compile 'org.apache.spark:spark-sql_2.11:2.1.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.11'
testCompile 'org.powermock:powermock-module-junit4:1.6.2'
testCompile 'org.powermock:powermock-api-mockito:1.6.2'
}