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 16b7309d84 Fixing build under JDK 27-ea
16b7309d84 is described below

commit 16b7309d844c86ca6532ecce84edb487166bad5a
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Wed Jun 17 14:24:23 2026 +0200

    Fixing build under JDK 27-ea
---
 pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/pom.xml b/pom.xml
index dd62eceb6d..276e6f619a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2512,6 +2512,27 @@ under the License.
         </plugins>
       </build>
     </profile>
+
+    <profile>
+      <id>jdk27</id>
+
+      <activation>
+        <jdk>[27,)</jdk>
+      </activation>
+
+      <dependencies>
+        <dependency>
+          <groupId>net.bytebuddy</groupId>
+          <artifactId>byte-buddy</artifactId>
+          <version>1.17.8</version>
+        </dependency>
+        <dependency>
+          <groupId>net.bytebuddy</groupId>
+          <artifactId>byte-buddy-agent</artifactId>
+          <version>1.17.8</version>
+        </dependency>
+      </dependencies>
+    </profile>
   </profiles>
 
   <modules>

Reply via email to