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 892ca8bc93 JDK 24 is out, time to switch to 25-ea (#1030)
892ca8bc93 is described below

commit 892ca8bc935fc1555c971a7bf27dd451d2c30a6b
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Tue Mar 18 17:28:54 2025 +0100

    JDK 24 is out, time to switch to 25-ea (#1030)
---
 .github/workflows/crosschecks.yml |  2 +-
 pom.xml                           | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/crosschecks.yml 
b/.github/workflows/crosschecks.yml
index cd9e72a432..d382b4fbd5 100644
--- a/.github/workflows/crosschecks.yml
+++ b/.github/workflows/crosschecks.yml
@@ -33,7 +33,7 @@ jobs:
       fail-fast: false
       matrix:
         language: ['java']
-        java: [ '21', '24-ea' ]
+        java: [ '21', '25-ea' ]
         os: [ubuntu-latest, windows-latest, macos-latest]
 
     steps:
diff --git a/pom.xml b/pom.xml
index 5e0681cf65..b5c90040f1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2373,6 +2373,41 @@ under the License.
         </plugins>
       </build>
     </profile>
+
+    <profile>
+      <id>jdk25</id>
+
+      <activation>
+        <jdk>25</jdk>
+      </activation>
+
+      <properties>
+        <byte-buddy.version>1.17.2</byte-buddy.version>
+        <mockito.version>5.16.1</mockito.version>
+      </properties>
+
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>net.bytebuddy</groupId>
+            <artifactId>byte-buddy</artifactId>
+            <version>${byte-buddy.version}</version>
+          </dependency>
+          <dependency>
+            <groupId>net.bytebuddy</groupId>
+            <artifactId>byte-buddy-agent</artifactId>
+            <version>${byte-buddy.version}</version>
+          </dependency>
+
+          <dependency>
+            <groupId>org.mockito</groupId>
+            <artifactId>mockito-junit-jupiter</artifactId>
+            <version>${mockito.version}</version>
+            <scope>test</scope>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
   </profiles>
 
   <modules>

Reply via email to