Bumped JUnit to version 5.11.0

This commit is contained in:
Erik C. Thauvin 2024-08-30 18:58:06 -07:00
parent 6f96d37595
commit 0ac71addc1
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -31,8 +31,8 @@ public class GraalNativeBuild extends Project {
repositories = List.of(MAVEN_CENTRAL, RIFE2_RELEASES);
scope(test)
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 3)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 3)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 11, 0)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 11, 0)));
// Add the main class to the manifest
jarOperation().manifestAttribute(Attributes.Name.MAIN_CLASS, mainClass());