-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
54 lines (43 loc) · 1.53 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
53
54
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.8.0"
application
}
group = "de.zordid"
version = "1.0-SNAPSHOT"
val kotest = "5.5.4"
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
//implementation("org.jetbrains.kotlinx:multik-core:0.2.0")
//implementation("org.jetbrains.kotlinx:multik-default:0.2.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("org.reflections:reflections:0.9.12")
implementation("com.github.ajalt.mordant:mordant:2.0.0-beta7")
implementation("guru.nidi:graphviz-kotlin:0.18.1")
implementation("org.slf4j:slf4j-nop:2.0.5")
//implementation("ch.qos.logback", "logback-classic", "1.2.3")
testImplementation(kotlin("test"))
testImplementation("org.junit.jupiter:junit-jupiter:5.9.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.0")
testImplementation("io.kotest:kotest-assertions-core-jvm:$kotest")
testImplementation("io.kotest:kotest-runner-junit5:$kotest")
testImplementation("io.kotest:kotest-property:$kotest")
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = "17"
//languageVersion = "1.9"
freeCompilerArgs = listOf("-Xcontext-receivers")
}
}
application {
mainClass.set("AdventOfCodeKt")
}