Update kotest version

This commit is contained in:
Ryan Harg 2024-03-11 10:35:50 +01:00
parent 26ddd41345
commit 04805f3a57

View file

@ -2,13 +2,6 @@ import java.time.Instant
import java.time.ZoneId import java.time.ZoneId
import java.time.format.DateTimeFormatter import java.time.format.DateTimeFormatter
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Kotlin application project to get you started.
* For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.5/userguide/building_java_projects.html in the Gradle documentation.
*/
plugins { plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin. // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
alias(libs.plugins.jvm) alias(libs.plugins.jvm)
@ -47,8 +40,9 @@ dependencies {
implementation("com.google.code.gson:gson:2.10.1") implementation("com.google.code.gson:gson:2.10.1")
implementation("social.bigbone:bigbone:2.0.0-SNAPSHOT") implementation("social.bigbone:bigbone:2.0.0-SNAPSHOT")
testImplementation("io.kotest:kotest-runner-junit5:5.8.0") val kotestVersion = "5.8.1"
testImplementation("io.kotest:kotest-assertions-core:5.8.0") testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion")
testImplementation("io.kotest:kotest-assertions-core:$kotestVersion")
testImplementation("com.willowtreeapps.assertk:assertk:0.28.0") testImplementation("com.willowtreeapps.assertk:assertk:0.28.0")
testImplementation("io.mockk:mockk:1.13.9") testImplementation("io.mockk:mockk:1.13.9")
} }