blob: 326bf4cb3299a02ca221ce4267ccb7e45ee3488a (
plain)
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
|
plugins {
kotlin("jvm") version "1.7.10"
id("com.bnorm.power.kotlin-power-assert") version "0.12.0"
application
}
group = "moe.nea89"
version = "0.0.1"
repositories {
mavenCentral()
}
application {
mainClass.set("Main")
}
dependencies {
implementation(kotlin("stdlib"))
implementation(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm")
testImplementation(platform("io.kotest:kotest-bom:5.4.2"))
testImplementation("io.kotest:kotest-runner-junit5")
testImplementation("io.kotest:kotest-property")
testImplementation("io.kotest:kotest-framework-datatest")
}
kotlin {
}
tasks.withType<Test>() {
useJUnitPlatform()
}
|