-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
46 lines (40 loc) · 1.11 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:5.2.0"
}
}
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile ('org.apache.spark:spark-core_2.12:2.4.5') {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
exclude group: 'com.fasterxml.jackson.module', module: 'jackson-module-scala_2.12'
}
compile ('org.apache.hadoop:hadoop-client:3.2.1') {
exclude group: 'com.fasterxml.jackson.core', module: 'jackson-databind'
}
compile (
'org.apache.spark:spark-sql_2.12:2.4.5'
, 'org.apache.hadoop:hadoop-aws:3.2.1'
, 'io.delta:delta-core_2.12:0.6.1'
, 'org.ini4j:ini4j:0.5.4'
, 'com.fasterxml.jackson.core:jackson-databind:2.6.7.1'
)
testCompile 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
}
test {
useJUnitPlatform()
jvmArgs '-Duser.timezone=GMT'
}
shadowJar {
zip64 true
}