Skip to content

Commit

Permalink
upgrade project (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
i-walker authored Nov 20, 2022
1 parent 6e343f5 commit 5f7f0a1
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.7.10"
id("io.kotest.multiplatform") version "5.4.1"
kotlin("jvm") version "1.7.21"
id("io.kotest.multiplatform") version "5.5.4"
}

group = "org.example"
Expand All @@ -10,17 +10,21 @@ repositories {
mavenCentral()
}

tasks.withType<Test> {
useJUnitPlatform()
}

dependencies {
implementation(kotlin("stdlib"))
implementation("io.arrow-kt:arrow-core:1.1.3-alpha.43")
implementation("io.arrow-kt:arrow-optics:1.1.3-alpha.43")
implementation("io.arrow-kt:arrow-core:1.1.3")
implementation("io.arrow-kt:arrow-optics:1.1.3")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
implementation("io.arrow-kt:arrow-fx-coroutines:1.1.3-alpha.43")
implementation("io.arrow-kt:arrow-fx-coroutines:1.1.3")

testImplementation("io.kotest:kotest-property:5.4.1")
testImplementation("io.kotest:kotest-assertions-core:5.4.1")
testImplementation("io.kotest:kotest-property:5.5.4")
testImplementation("io.kotest:kotest-assertions-core:5.5.4")
testImplementation("io.kotest.extensions:kotest-assertions-arrow:1.2.5")
testImplementation("io.kotest.extensions:kotest-property-arrow:1.2.5") // optional
testImplementation("io.kotest.extensions:kotest-property-arrow-optics:1.2.5") // optional
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.4.1")
testImplementation("io.kotest:kotest-runner-junit5-jvm:5.5.4")
}

0 comments on commit 5f7f0a1

Please sign in to comment.