This is an automated email from the ASF dual-hosted git repository.
jungm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomee.git
The following commit(s) were added to refs/heads/main by this push:
new 0ecc3a6c42 fix compilation on jdk 25
0ecc3a6c42 is described below
commit 0ecc3a6c426754684bc90a23dd5779dd6629c6d5
Author: Markus Jung <[email protected]>
AuthorDate: Tue Oct 28 07:49:11 2025 +0100
fix compilation on jdk 25
---
tomee/apache-tomee/pom.xml | 27 ++++++++++++++++++++++++++-
1 file changed, 26 insertions(+), 1 deletion(-)
diff --git a/tomee/apache-tomee/pom.xml b/tomee/apache-tomee/pom.xml
index 9aa309e160..037ce3472f 100644
--- a/tomee/apache-tomee/pom.xml
+++ b/tomee/apache-tomee/pom.xml
@@ -40,6 +40,16 @@
<jdk.attach.allowAttachSelf>true</jdk.attach.allowAttachSelf>
</properties>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ <version>1.18.42</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
@@ -158,7 +168,6 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
- <version>1.18.42</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -180,6 +189,22 @@
<filtering>true</filtering>
</testResource>
</testResources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.14.1</version>
+ <configuration>
+ <annotationProcessorPaths>
+ <path>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ </path>
+ </annotationProcessorPaths>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
<profiles>