Skip to content

Commit

Permalink
Bump GraalVM and Mandrel version to 22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zakkak committed May 4, 2022
1 parent a152f8c commit b4b63ba
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,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>
<!-- What we actually depend on for the annotations, as latest Graal is not available in Maven fast enough: -->
<!-- Use previous graal version till https://github.com/oracle/graal/issues/4518 gets resolved -->
<graal-sdk.version>22.0.0.2</graal-sdk.version>
<gizmo.version>1.0.10.Final</gizmo.version>
<jackson-bom.version>2.13.2.20220328</jackson-bom.version>
Expand Down
4 changes: 2 additions & 2 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
<!-- 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.0.0.2</graal-sdk.version-for-documentation>
<mandrel.version-for-documentation>22.0</mandrel.version-for-documentation>
<graal-sdk.version-for-documentation>22.1.0</graal-sdk.version-for-documentation>
<mandrel.version-for-documentation>22.1</mandrel.version-for-documentation>

<asciidoctorj.version>2.5.3</asciidoctorj.version>
<htmlunit.version>2.40.0</htmlunit.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
@ConfigRoot(phase = ConfigPhase.BUILD_TIME)
public class NativeConfig {

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

/**
* Comma-separated, additional arguments to pass to the build process.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ static final class Version implements Comparable<Version> {
static final Version VERSION_21_3_2 = new Version("GraalVM 21.3.2", "21.3.2", Distribution.ORACLE);
static final Version VERSION_22_0_0_2 = new Version("GraalVM 22.0.0.2", "22.0.0.2", Distribution.ORACLE);

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

static final Version MINIMUM = VERSION_21_2;
static final Version CURRENT = VERSION_22_0_0_2;
static final Version CURRENT = VERSION_22_1_0;
public static final int UNDEFINED = -1;

final String fullVersion;
Expand Down
1 change: 1 addition & 0 deletions independent-projects/bootstrap/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
<jboss-logmanager-embedded.version>1.0.9</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>
<!-- Use previous graal version till https://github.com/oracle/graal/issues/4518 gets resolved -->
<graal-sdk.version>22.0.0.2</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.11.0</smallrye-common.version>
Expand Down

0 comments on commit b4b63ba

Please sign in to comment.