This is an automated email from the ASF dual-hosted git repository.
davidzollo pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new 9b64b3d0ba [Build][Deps] Support JDK23 lombok annotation processing
(#10887)
9b64b3d0ba is described below
commit 9b64b3d0ba0cdd21e3ef54a4701a94c43434d8a5
Author: Daniel <[email protected]>
AuthorDate: Sat May 23 21:19:54 2026 +0800
[Build][Deps] Support JDK23 lombok annotation processing (#10887)
---
pom.xml | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 5cc0633912..80d7805b2b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -89,7 +89,7 @@
<javax.servlet.jap.version>2.1</javax.servlet.jap.version>
<hadoop.binary.version>2.7</hadoop.binary.version>
<jackson.version>2.13.3</jackson.version>
- <lombok.version>1.18.24</lombok.version>
+ <lombok.version>1.18.36</lombok.version>
<commons-compress.version>1.20</commons-compress.version>
<avro.version>1.11.1</avro.version>
<skip.pmd.check>false</skip.pmd.check>
@@ -873,6 +873,18 @@
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
+ <annotationProcessorPaths>
+ <path>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ <version>${lombok.version}</version>
+ </path>
+ <path>
+ <groupId>com.google.auto.service</groupId>
+ <artifactId>auto-service</artifactId>
+ <version>${auto-service.version}</version>
+ </path>
+ </annotationProcessorPaths>
</configuration>
</plugin>
<plugin>