Skip to content

Commit

Permalink
Update to GraalVM 19.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cescoffier committed Oct 18, 2019
1 parent 7bd8980 commit b529a0e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bom/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<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</jackson.version>
<commons-logging-jboss-logging.version>1.0.0.Final</commons-logging-jboss-logging.version>
Expand Down
2 changes: 1 addition & 1 deletion build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<!-- These properties are needed in order for them to be resolvable by the documentation -->
<!-- The Graal version we suggest using in documentation - as that's
what we work with by self downloading it: -->
<graal-sdk.version-for-documentation>19.2.0.1</graal-sdk.version-for-documentation>
<graal-sdk.version-for-documentation>19.2.1</graal-sdk.version-for-documentation>
<rest-assured.version>4.1.1</rest-assured.version>
<axle-client.version>0.0.9</axle-client.version>
<vertx.version>3.8.1</vertx.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public class NativeImagePhase implements AppCreationPhase<NativeImagePhase>, Nat

private String nativeImageXmx;

private String builderImage = "quay.io/quarkus/ubi-quarkus-native-image:19.2.0.1";
private String builderImage = "quay.io/quarkus/ubi-quarkus-native-image:19.2.1";

private String containerRuntime = "";

Expand Down Expand Up @@ -589,10 +589,10 @@ public void provideOutcome(AppCreator ctx) throws AppCreatorException {
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.1");
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.1.");
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 b529a0e

Please sign in to comment.