Skip to content

Commit

Permalink
Bumping Graalvm to 21
Browse files Browse the repository at this point in the history
  • Loading branch information
pmlopes committed Oct 10, 2023
1 parent 6efa7b3 commit 0a4a5a1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version: ['22.3.1']
version: ['23.0.1']
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version: [11, 17]
version: [17, 21]
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [0.21.0] -
* Bumped vertx to 4.4.5
* Bumped Graal to 23.0.1

## [0.20.0] - 2023-06-16
* Bumped vertx to 4.4.3
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<packaging>pom</packaging>

<properties>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.testTarget>11</maven.compiler.testTarget>
<maven.compiler.testSource>11</maven.compiler.testSource>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.testTarget>17</maven.compiler.testTarget>
<maven.compiler.testSource>17</maven.compiler.testSource>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Dependency versions -->
<stack.version>4.4.5</stack.version>
<graalvm.version>22.3.2</graalvm.version>
<graalvm.version>23.0.1</graalvm.version>
<!-- deployment -->
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
</properties>
Expand Down Expand Up @@ -114,8 +114,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 0a4a5a1

Please sign in to comment.