Skip to content

Commit

Permalink
Merge pull request quarkusio#5189 from gsmet/graal-sdk-19.2.1
Browse files Browse the repository at this point in the history
Update to GraalVM SDK 19.2.1
  • Loading branch information
cescoffier authored Nov 5, 2019
2 parents e7de7c3 + 4ace4d7 commit 8f12f48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bom/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<maven-plugin-annotations.version>3.5.2</maven-plugin-annotations.version>
<plexus-component-annotations.version>1.7.1</plexus-component-annotations.version>
<!-- What we actually depend on for the annotations, as latest Graal is not available in Maven fast enough: -->
<graal-sdk.version>19.2.0.1</graal-sdk.version>
<graal-sdk.version>19.2.1</graal-sdk.version>
<gizmo.version>1.0.0.Alpha8</gizmo.version>
<jackson.version>2.9.10.20191020</jackson.version>
<commons-logging-jboss-logging.version>1.0.0.Final</commons-logging-jboss-logging.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,10 +299,10 @@ public NativeImageBuildItem build(NativeConfig nativeConfig, NativeImageSourceJa
private boolean isThisGraalVMVersionObsolete() {
final String vmName = System.getProperty("java.vm.name");
log.info("Running Quarkus native-image plugin on " + vmName);
final List<String> obsoleteGraalVmVersions = Arrays.asList("1.0.0", "19.0.", "19.1.");
final List<String> obsoleteGraalVmVersions = Arrays.asList("1.0.0", "19.0.", "19.1.", "19.2.0");
final boolean vmVersionIsObsolete = obsoleteGraalVmVersions.stream().anyMatch(vmName::contains);
if (vmVersionIsObsolete) {
log.error("Out of date build of GraalVM detected! Please upgrade to GraalVM 19.2.0.");
log.error("Out of date build of GraalVM detected! Please upgrade to GraalVM 19.2.1.");
return true;
}
return false;
Expand Down

0 comments on commit 8f12f48

Please sign in to comment.