Skip to content

Commit

Permalink
Bump to GraalVM 22.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jul 27, 2022
1 parent a57383e commit 3b9a991
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Expand Up @@ -80,7 +80,7 @@
<maven-toolchain.version>3.0-alpha-2</maven-toolchain.version>
<plexus-utils.version>3.3.0</plexus-utils.version>
<plexus-component-annotations.version>2.1.0</plexus-component-annotations.version>
<graal-sdk.version>22.1.0</graal-sdk.version>
<graal-sdk.version>22.2.0</graal-sdk.version>
<graal-svm.version>${graal-sdk.version}</graal-svm.version>
<gizmo.version>1.0.11.Final</gizmo.version>
<jackson-bom.version>2.13.3</jackson-bom.version>
Expand Down
2 changes: 1 addition & 1 deletion build-parent/pom.xml
Expand Up @@ -39,7 +39,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>22.1.0</graal-sdk.version-for-documentation>
<graal-sdk.version-for-documentation>22.2.0</graal-sdk.version-for-documentation>
<mandrel.version-for-documentation>22.1</mandrel.version-for-documentation>

<asciidoctorj.version>2.5.5</asciidoctorj.version>
Expand Down
Expand Up @@ -16,7 +16,7 @@
@ConfigRoot(phase = ConfigPhase.BUILD_TIME)
public class NativeConfig {

public static final String DEFAULT_GRAALVM_BUILDER_IMAGE = "quay.io/quarkus/ubi-quarkus-native-image:22.1-java17";
public static final String DEFAULT_GRAALVM_BUILDER_IMAGE = "quay.io/quarkus/ubi-quarkus-native-image:22.2-java17";
public static final String DEFAULT_MANDREL_BUILDER_IMAGE = "quay.io/quarkus/ubi-quarkus-mandrel:22.1-java17";

/**
Expand Down
Expand Up @@ -27,9 +27,10 @@ public static final class Version implements Comparable<Version> {
static final Version VERSION_22_0_0_2 = new Version("GraalVM 22.0.0.2", "22.0.0.2", Distribution.ORACLE);

public static final Version VERSION_22_1_0 = new Version("GraalVM 22.1.0", "22.1.0", Distribution.ORACLE);
static final Version VERSION_22_2_0 = new Version("GraalVM 22.2.0", "22.2.0", Distribution.ORACLE);

public static final Version MINIMUM = VERSION_21_3;
static final Version CURRENT = VERSION_22_1_0;
public static final Version CURRENT = VERSION_22_2_0;
public static final int UNDEFINED = -1;

final String fullVersion;
Expand Down
2 changes: 1 addition & 1 deletion independent-projects/bootstrap/pom.xml
Expand Up @@ -61,7 +61,7 @@
<jboss-logmanager-embedded.version>1.0.10</jboss-logmanager-embedded.version>
<slf4j-jboss-logmanager.version>1.1.0.Final</slf4j-jboss-logmanager.version>
<slf4j-api.version>1.7.36</slf4j-api.version>
<graal-sdk.version>22.1.0</graal-sdk.version>
<graal-sdk.version>22.2.0</graal-sdk.version>
<plexus-classworlds.version>2.6.0</plexus-classworlds.version> <!-- not actually used but ClassRealm class is referenced from the API used in BootstrapWagonConfigurator -->
<smallrye-common.version>1.13.0</smallrye-common.version>
<gradle-tooling.version>7.5</gradle-tooling.version>
Expand Down

0 comments on commit 3b9a991

Please sign in to comment.