forked from Synesso/FunctionalTraining
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
29 lines (23 loc) · 717 Bytes
/
build.gradle.kts
File metadata and controls
29 lines (23 loc) · 717 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
val arrowVersion by extra { "1.1.2" }
plugins {
kotlin("jvm") version "1.6.20"
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib"))
implementation("io.arrow-kt:arrow-core:$arrowVersion")
testImplementation("io.kotest:kotest-assertions-core:5.4.2")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.2.5")
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.4.2")
testImplementation("io.kotest:kotest-property:5.4.2")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.2.5")
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.4.2")
}
tasks {
test {
useJUnitPlatform()
}
}