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/04 21:54:54 UTC

(tika) 01/01: TIKA-4179 -- downgrade zookeeper in age-recogniser so that 2.x can still be built with Java 8

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

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

commit 0e14c8cdbdfe59779365fce4f42137bf273005a4
Author: tallison <ta...@apache.org>
AuthorDate: Thu Jan 4 16:54:29 2024 -0500

    TIKA-4179 -- downgrade zookeeper in age-recogniser so that 2.x can still be built with Java 8
---
 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>