forked from cwmyers/FunctionalTraining
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (28 loc) · 897 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (28 loc) · 897 Bytes
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
val arrowVersion by extra { "1.2.1" }
val quiverVersion by extra { "0.5.13" }
plugins {
kotlin("jvm") version "1.9.20"
}
repositories {
mavenCentral()
}
kotlin {
jvmToolchain(21)
}
dependencies {
implementation(kotlin("stdlib"))
implementation("io.arrow-kt:arrow-core:$arrowVersion")
implementation("io.arrow-kt:arrow-fx-coroutines:$arrowVersion")
implementation("io.arrow-kt:arrow-optics:$arrowVersion")
implementation("app.cash.quiver:lib:$quiverVersion")
testImplementation("io.kotest:kotest-assertions-core:5.8.0")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.4.0")
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.8.0")
testImplementation("io.kotest:kotest-property:5.8.0")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.4.0")
}
tasks {
test {
useJUnitPlatform()
}
}