Upgrade Kotlin to 1.8.10 and JUnit to 5.9.2

This commit is contained in:
Duncan McGregor 2023-02-27 22:30:45 +00:00
parent 2d115146eb
commit 054a7e18a4

View File

@ -1,7 +1,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.6.10"
kotlin("jvm") version "1.8.10"
}
group = "com.gildedrose"
@ -13,7 +13,7 @@ repositories {
dependencies {
implementation(kotlin("stdlib"))
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
}
tasks.test {