diff --git a/.idea/libraries/bld.xml b/.idea/libraries/bld.xml index 48e8fd5..867d049 100644 --- a/.idea/libraries/bld.xml +++ b/.idea/libraries/bld.xml @@ -2,12 +2,12 @@ - + - + diff --git a/.vscode/settings.json b/.vscode/settings.json index 51d8e7f..8eabd78 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -8,7 +8,7 @@ ], "java.configuration.updateBuildConfiguration": "automatic", "java.project.referencedLibraries": [ - "${HOME}/.bld/dist/bld-1.9.1.jar", + "${HOME}/.bld/dist/bld-2.0.1.jar", "lib/**/*.jar", ] } diff --git a/lib/bld/bld-wrapper.jar b/lib/bld/bld-wrapper.jar index fc2f428..a1ac489 100644 Binary files a/lib/bld/bld-wrapper.jar and b/lib/bld/bld-wrapper.jar differ diff --git a/lib/bld/bld-wrapper.properties b/lib/bld/bld-wrapper.properties index 8d39fd8..aebf40d 100644 --- a/lib/bld/bld-wrapper.properties +++ b/lib/bld/bld-wrapper.properties @@ -1,7 +1,7 @@ bld.downloadExtensionJavadoc=false bld.downloadExtensionSources=true bld.downloadLocation= -bld.extension-exec=com.uwyn.rife2:bld-exec:1.0.1 +bld.extension-exec=com.uwyn.rife2:bld-exec:1.0.2 bld.repositories=MAVEN_CENTRAL,RIFE2_RELEASES,MAVEN_LOCAL,RIFE2_SNAPSHOTS bld.sourceDirectories= -bld.version=1.9.1 +bld.version=2.0.1 diff --git a/src/bld/java/com/example/GraalNativeBuild.java b/src/bld/java/com/example/GraalNativeBuild.java index 990e2c6..d2736d8 100644 --- a/src/bld/java/com/example/GraalNativeBuild.java +++ b/src/bld/java/com/example/GraalNativeBuild.java @@ -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