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

tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git


The following commit(s) were added to refs/heads/main by this push:
     new 89a301f648 TIKA-4327: fix lombok, remove unneeded
89a301f648 is described below

commit 89a301f64836a35b68ef5cf4d62d4bc99207cdff
Author: Tilman Hausherr <[email protected]>
AuthorDate: Mon Apr 6 11:15:56 2026 +0200

    TIKA-4327: fix lombok, remove unneeded
---
 tika-e2e-tests/pom.xml     | 18 ++++--------------
 tika-parent/pom.xml        |  1 +
 tika-serialization/pom.xml |  2 +-
 3 files changed, 6 insertions(+), 15 deletions(-)

diff --git a/tika-e2e-tests/pom.xml b/tika-e2e-tests/pom.xml
index 61845c59ec..71073c6204 100644
--- a/tika-e2e-tests/pom.xml
+++ b/tika-e2e-tests/pom.xml
@@ -44,15 +44,6 @@
 
         <!-- Tika version -->
         <tika.version>${revision}</tika.version>
-
-        <!-- Test dependencies -->
-        <junit.version>${junit6.version}</junit.version>
-
-        <!-- Logging -->
-        <log4j.version>${log4j2.version}</log4j.version>
-
-        <!-- Other -->
-        <lombok.version>1.18.44</lombok.version>
     </properties>
 
     <modules>
@@ -62,17 +53,16 @@
 
     <dependencyManagement>
         <dependencies>
-            <!-- JUnit 5 -->
             <dependency>
                 <groupId>org.junit.jupiter</groupId>
                 <artifactId>junit-jupiter-engine</artifactId>
-                <version>${junit.version}</version>
+                <version>${junit6.version}</version>
                 <scope>test</scope>
             </dependency>
             <dependency>
                 <groupId>org.junit.jupiter</groupId>
                 <artifactId>junit-jupiter-api</artifactId>
-                <version>${junit.version}</version>
+                <version>${junit6.version}</version>
                 <scope>test</scope>
             </dependency>
 
@@ -94,12 +84,12 @@
             <dependency>
                 <groupId>org.apache.logging.log4j</groupId>
                 <artifactId>log4j-core</artifactId>
-                <version>${log4j.version}</version>
+                <version>${log4j2.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.apache.logging.log4j</groupId>
                 <artifactId>log4j-slf4j2-impl</artifactId>
-                <version>${log4j.version}</version>
+                <version>${log4j2.version}</version>
             </dependency>
             <dependency>
                 <groupId>org.slf4j</groupId>
diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index 12dc5fde4c..1b95fdd5c7 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -407,6 +407,7 @@
     <kotlin-stdlib.version>2.3.20</kotlin-stdlib.version>
     <libpst.version>0.9.3</libpst.version>
     <log4j2.version>2.25.4</log4j2.version>
+    <lombok.version>1.18.44</lombok.version>
     <!-- can't update to 10, needs jdk21 -->
     <lucene.version>9.12.3</lucene.version>
     <maven.plugin.annotations.version>3.15.2</maven.plugin.annotations.version>
diff --git a/tika-serialization/pom.xml b/tika-serialization/pom.xml
index f0fddbe850..a5f0ddd249 100644
--- a/tika-serialization/pom.xml
+++ b/tika-serialization/pom.xml
@@ -65,7 +65,7 @@
     <dependency>
       <groupId>org.projectlombok</groupId>
       <artifactId>lombok</artifactId>
-      <version>1.18.44</version>
+      <version>${lombok.version}</version>
       <scope>compile</scope>
     </dependency>
     <!-- Test dependencies -->

Reply via email to