You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2022/04/26 20:17:06 UTC

[tika] branch branch_1x updated: TIKA-3739 -- fix dependency convergence when building with java > 8.

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

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


The following commit(s) were added to refs/heads/branch_1x by this push:
     new 214dcff95 TIKA-3739 -- fix dependency convergence when building with java > 8.
214dcff95 is described below

commit 214dcff95fb8b4f63e6cdef5af8753fe9d062752
Author: tallison <ta...@apache.org>
AuthorDate: Tue Apr 26 16:16:53 2022 -0400

    TIKA-3739 -- fix dependency convergence when building with java > 8.
---
 tika-parent/pom.xml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml
index c40da9a6b..9d9994c98 100644
--- a/tika-parent/pom.xml
+++ b/tika-parent/pom.xml
@@ -637,6 +637,15 @@
           </plugin>
         </plugins>
       </build>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>jakarta.activation</groupId>
+            <artifactId>jakarta.activation-api</artifactId>
+            <version>1.2.2</version>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
       <!-- keep these at 2.x -->
       <dependencies>
         <dependency>
@@ -647,7 +656,6 @@
         <dependency>
           <groupId>jakarta.activation</groupId>
           <artifactId>jakarta.activation-api</artifactId>
-          <version>1.2.2</version>
         </dependency>
       </dependencies>
     </profile>