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 2024/01/08 21:47:24 UTC

(tika) branch branch_2x updated: TIKA-4179 -- downgrade zookeeper in age-recogniser so that 2.x can still be built with Java 8 (#1532)

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

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


The following commit(s) were added to refs/heads/branch_2x by this push:
     new 1b9755416 TIKA-4179 -- downgrade zookeeper in age-recogniser so that 2.x can still be built with Java 8 (#1532)
1b9755416 is described below

commit 1b97554166b59ecf302ca77c06b7dcf965530799
Author: Tim Allison <ta...@apache.org>
AuthorDate: Mon Jan 8 16:47:19 2024 -0500

    TIKA-4179 -- downgrade zookeeper in age-recogniser so that 2.x can still be built with Java 8 (#1532)
---
 tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml b/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml
index 0663d855d..88b4fad9b 100644
--- a/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml
+++ b/tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml
@@ -97,7 +97,8 @@
       <dependency>
           <groupId>org.apache.zookeeper</groupId>
           <artifactId>zookeeper</artifactId>
-          <version>3.9.1</version>
+          <!-- higher than this brings in a logback version that requires java > 8 -->
+          <version>3.7.2</version>
           <exclusions>
               <exclusion>
                   <groupId>io.netty</groupId>