-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (51 loc) · 1.25 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
60
61
import com.github.jengelman.gradle.plugins.shadow.transformers.Log4j2PluginsCacheFileTransformer
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'java'
id 'com.github.johnrengelman.shadow' version '7.0.0'
id "org.jlleitschuh.gradle.ktlint" version "10.2.0"
}
group 'datappeal.io'
version '0.0.1'
repositories {
mavenCentral()
}
ext {
iceberg_core = '0.13.1'
kotlin_stdlib = '1.6.0'
mockk = '1.12.1'
assertk_jvm = '0.25'
junit_jupiter_api = '5.8.1'
junit_jupiter_engine = '5.8.1'
aws = '2.15.40'
iceberg_hive_metastore = '0.12.0'
hadoop_aws = '3.2.0'
hadoop_client = '3.2.0'
hive_metastore = '2.3.7'
clikt = '3.3.0'
jackson_module_kotlin = '2.13.0'
jackson_dataformat_yaml = '2.13.0'
assertk_jvm = '0.25'
google_gson = '2.7'
}
dependencies {
implementation project(":job")
}
shadowJar {
transform(Log4j2PluginsCacheFileTransformer)
zip64 true
manifest {
attributes 'Main-Class': 'io.datappeal.narwhal.job.JobKt'
}
}
subprojects {
apply plugin: 'org.jetbrains.kotlin.jvm'
apply plugin: 'java'
apply plugin: "org.jlleitschuh.gradle.ktlint"
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
}