This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/master by this push:
     new b1baa7a5cd Checking compatibility with JDK23 (#788)
b1baa7a5cd is described below

commit b1baa7a5cddf58db4d0e00e3cd7fef61a73c55b0
Author: Francesco Chicchiriccò <ilgro...@users.noreply.github.com>
AuthorDate: Thu Jul 18 08:37:46 2024 +0200

    Checking compatibility with JDK23 (#788)
---
 .github/workflows/crosschecks.yml |  2 +-
 pom.xml                           | 20 ++++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/crosschecks.yml 
b/.github/workflows/crosschecks.yml
index d19960da82..3e081a2c7e 100644
--- a/.github/workflows/crosschecks.yml
+++ b/.github/workflows/crosschecks.yml
@@ -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:
diff --git a/pom.xml b/pom.xml
index 2bf451a049..b2e66ef56b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -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>

Reply via email to