Bumped Kotlin Test (JUnit5) to version 1.9.24

This commit is contained in:
Erik C. Thauvin 2024-05-10 10:43:03 -07:00
parent fa33377372
commit 02127fe6e3
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -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)));