Skip to content

Commit

Permalink
TIKA-3751: remove netty, update zookeeper somewhat
Browse files Browse the repository at this point in the history
  • Loading branch information
THausherr committed Jun 10, 2022
1 parent fae27ea commit 330dff3
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions tika-parsers/tika-parsers-ml/tika-age-recogniser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,14 @@
</dependency>

<!-- avoid conflicts because of age-predictor-api -->
<!-- can't update zookeeper higher than 3.4.14 without getting dependency convergence errors -->
<!-- can't update zookeeper higher than 3.5.10 without getting dependency convergence errors -->
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.4.14</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
<version>3.10.6.Final</version>
<version>3.5.10</version>
</dependency>
<!-- netty dependency removed, either it isn't needed,
or our test coverage isn't good enough -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
Expand All @@ -162,6 +159,12 @@
<groupId>edu.usc.ir</groupId>
<artifactId>age-predictor-api</artifactId>
<version>1.0</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Test dependencies -->
<dependency>
Expand Down

0 comments on commit 330dff3

Please sign in to comment.