diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e7782ed..8de3b1a 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -2,13 +2,6 @@ import java.time.Instant import java.time.ZoneId 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 { // Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin. alias(libs.plugins.jvm) @@ -47,8 +40,9 @@ dependencies { implementation("com.google.code.gson:gson:2.10.1") implementation("social.bigbone:bigbone:2.0.0-SNAPSHOT") - testImplementation("io.kotest:kotest-runner-junit5:5.8.0") - testImplementation("io.kotest:kotest-assertions-core:5.8.0") + val kotestVersion = "5.8.1" + testImplementation("io.kotest:kotest-runner-junit5:$kotestVersion") + testImplementation("io.kotest:kotest-assertions-core:$kotestVersion") testImplementation("com.willowtreeapps.assertk:assertk:0.28.0") testImplementation("io.mockk:mockk:1.13.9") }