From 01dea98421f4c187b65f7e9beb027b7a96e477b0 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Sun, 11 Feb 2024 23:26:47 -0800 Subject: [PATCH] Bumped JUnit version --- src/bld/java/com/example/ExampleBuild.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bld/java/com/example/ExampleBuild.java b/src/bld/java/com/example/ExampleBuild.java index 1f4ee3f..4349ea6 100644 --- a/src/bld/java/com/example/ExampleBuild.java +++ b/src/bld/java/com/example/ExampleBuild.java @@ -35,8 +35,8 @@ public class ExampleBuild extends Project { .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin)); scope(test) .include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin)) - .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1))) - .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1))); + .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 the Kotlin source directory when creating or publishing sources Java Archives jarSourcesOperation().sourceDirectories(new File(srcMainDirectory(), "kotlin")); @@ -149,4 +149,4 @@ public class ExampleBuild extends Project { .outputFormat(OutputFormat.JAVADOC) .execute(); } -} \ No newline at end of file +}