Skip to content

Commit

Permalink
Bumped JUnit version
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Feb 12, 2024
1 parent 07721a8 commit 01dea98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/bld/java/com/example/ExampleBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public ExampleBuild() {
.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"));
Expand Down Expand Up @@ -149,4 +149,4 @@ public void javadoc() throws ExitStatusException, IOException, InterruptedExcept
.outputFormat(OutputFormat.JAVADOC)
.execute();
}
}
}

0 comments on commit 01dea98

Please sign in to comment.