Updated dependencies

Bumped bld to version 2.0.1
Bumped Exec extension to version 1.0.2
Bumped JUnit to version 5.10.3
This commit is contained in:
Erik C. Thauvin 2024-07-29 00:27:54 -07:00
parent bd83b36a35
commit 6f96d37595
Signed by: erik
GPG key ID: 776702A6A2DA330E
5 changed files with 8 additions and 8 deletions

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, 2)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 2)));
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 3)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 3)));
// Add the main class to the manifest
jarOperation().manifestAttribute(Attributes.Name.MAIN_CLASS, mainClass());
@ -47,7 +47,7 @@ public class GraalNativeBuild extends Project {
new ExecOperation()
.fromProject(this)
.timeout(120)
.workDir(buildMainDirectory().getAbsolutePath())
.workDir(buildMainDirectory())
// The native image options documentation can be found at:
// https://www.graalvm.org/22.0/reference-manual/native-image/Options/
.command("native-image", // use its absolute path if not found