Skip to content

Commit

Permalink
Support for building with OpenJDK 21
Browse files Browse the repository at this point in the history
  • Loading branch information
linghengqian committed Aug 31, 2023
1 parent bac2dfb commit a13cdc8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java-version: [ 11, 17, 20 ]
java-version: [ 11, 17, 21-ea ]
steps:
- name: Support Long Paths in Windows
if: matrix.os == 'windows-latest'
Expand Down
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
<slf4j.version>1.7.36</slf4j.version>
<logback.version>1.2.11</logback.version>

<lombok.version>1.18.20</lombok.version>
<lombok.version>edge-SNAPSHOT</lombok.version>

<postgresql.version>42.4.1</postgresql.version>
<opengauss.version>3.1.0-og</opengauss.version>
Expand Down Expand Up @@ -1281,4 +1281,11 @@
</build>
</profile>
</profiles>

<repositories>
<repository>
<id>projectlombok.org</id>
<url>https://projectlombok.org/edge-releases</url>
</repository>
</repositories>
</project>

0 comments on commit a13cdc8

Please sign in to comment.