From 73e36905a62159c9fe0d60535365909a207f3495 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Fri, 4 Jul 2025 16:55:09 -0700 Subject: [PATCH] Bump JUnit to version 5.13.3 --- src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java b/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java index d7c2b38..d7662a2 100644 --- a/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java +++ b/src/bld/java/net/thauvin/erik/bitly/BitlyShortenBuild.java @@ -87,9 +87,9 @@ public class BitlyShortenBuild extends Project { .include(dependency("org.json", "json", "20250517")); scope(test) .include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin)) - .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 13, 2))) - .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 13, 2))) - .include(dependency("org.junit.platform", "junit-platform-launcher", version(1, 13, 2))) + .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 13, 3))) + .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 13, 3))) + .include(dependency("org.junit.platform", "junit-platform-launcher", version(1, 13, 3))) .include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 1))); publishOperation()