Skip to content

Commit

Permalink
Checking compatibility with JDK23 (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed Jul 18, 2024
1 parent c5206cb commit b1baa7a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/crosschecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
language: ['java']
java: [ '21', '22' ]
java: [ '21', '23-ea' ]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2257,6 +2257,26 @@ under the License.
</modules>
</profile>

<!-- TMP until Spring Boot 3.3.2 -->
<profile>
<id>jdk23-plus</id>

<activation>
<jdk>[23,)</jdk>
</activation>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>4.2.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
</profile>

<profile>
<activation>
<os>
Expand Down

0 comments on commit b1baa7a

Please sign in to comment.