From 02127fe6e3912e99ed55fe77fd7f8b58bb412f78 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Fri, 10 May 2024 10:43:03 -0700 Subject: [PATCH] Bumped Kotlin Test (JUnit5) to version 1.9.24 --- src/bld/java/net/thauvin/erik/IsgdShortenBuild.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java b/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java index 6351907..7063682 100644 --- a/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java +++ b/src/bld/java/net/thauvin/erik/IsgdShortenBuild.java @@ -56,6 +56,7 @@ import static rife.bld.dependencies.Scope.test; public class IsgdShortenBuild extends Project { final File srcMainKotlin = new File(srcMainDirectory(), "kotlin"); + public IsgdShortenBuild() { pkg = "net.thauvin.erik"; name = "isgd-shorten"; @@ -72,6 +73,7 @@ public class IsgdShortenBuild extends Project { .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin)) .include(dependency("net.thauvin.erik.urlencoder", "urlencoder-lib-jvm", version(1, 5, 0))); scope(test) + .include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin)) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 2))) .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2))) .include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 1)));