-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
30 lines (25 loc) · 943 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
plugins {
kotlin("jvm") version "1.9.22"
id("io.kotest.multiplatform") version "5.8.0"
}
group = "org.example"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
tasks.withType<Test> {
useJUnitPlatform()
}
dependencies {
implementation(kotlin("stdlib"))
implementation("io.arrow-kt:arrow-core:1.2.1")
implementation("io.arrow-kt:arrow-optics:1.2.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
implementation("io.arrow-kt:arrow-fx-coroutines:1.2.1")
testImplementation("io.kotest:kotest-property:5.8.0")
testImplementation("io.kotest:kotest-assertions-core:5.8.0")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.4.0")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.4.0") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.4.0") // optional
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.8.0")
}