-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
52 lines (44 loc) · 1.25 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
plugins {
base
java
kotlin("jvm") version "1.6.21"
idea
`java-library`
}
description = "Example iterators that throw errors"
version = "0.0.1"
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8.toString()
kotlinOptions.allWarningsAsErrors = true
}
compileTestKotlin {
kotlinOptions.jvmTarget = JavaVersion.VERSION_1_8.toString()
kotlinOptions.allWarningsAsErrors = true
}
test {
useJUnitPlatform()
testLogging {
events("skipped", "failed")
showStandardStreams = true
}
}
}
repositories {
mavenCentral()
}
val accumuloVersion = "1.10.2"
val slf4jVersion = "1.7.36"
val logbackVersion = "1.2.11"
dependencies {
implementation(kotlin("stdlib"))
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.6.1")
implementation("org.apache.accumulo", "accumulo-core", accumuloVersion)
testImplementation("org.apache.accumulo", "accumulo-minicluster", accumuloVersion)
testImplementation(platform("org.junit:junit-bom:5.8.2"))
testImplementation("org.junit.jupiter:junit-jupiter")
}