-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
40 lines (34 loc) · 1006 Bytes
/
build.gradle.kts
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
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.3.50"
application
idea
}
repositories {
mavenCentral()
}
application {
mainClassName = "orsimer.AppKt"
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.erlang.otp:jinterface:1.6.1")
implementation("org.apache.orc:orc-core:1.6.2")
implementation("org.apache.hadoop:hadoop-common:3.2.1")
implementation("org.apache.hadoop:hadoop-hdfs-client:3.2.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.5.2")
testImplementation("org.assertj:assertj-core:3.14.0")
testImplementation("org.awaitility:awaitility-kotlin:4.0.2")
}
tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "1.8"
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
showExceptions = true
showCauses = true
}
}