-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle.kts
50 lines (45 loc) · 1.21 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
plugins {
kotlin("jvm") version "1.3.72"
}
group = "kritzcreek"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
jcenter()
maven("https://dl.bintray.com/jannis/kotlin-pretty")
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("kotlin-pretty:kotlin-pretty:0.5.2")
implementation("io.arrow-kt:arrow-core:0.10.5")
testImplementation("org.junit.jupiter:junit-jupiter:5.6.2")
implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable-jvm:0.3.2")
}
tasks {
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = listOf("-XXLanguage:+InlineClasses")
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = listOf("-XXLanguage:+InlineClasses")
}
test {
useJUnitPlatform {
includeTags(
"substitution"
, "literal"
, "var"
, "lambda"
, "let"
, "unify"
, "application"
, "if"
, "recursivelet"
)
}
testLogging {
events("passed", "skipped", "failed")
}
}
}