You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ti...@apache.org on 2022/06/18 03:10:16 UTC

[tika] 02/02: TIKA-3795: move exclusions to parent

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

commit 8e67effeeda21c5b3032237af3b349fe1fbc6fca
Author: Tilman Hausherr <ti...@apache.org>
AuthorDate: Sat Jun 18 05:09:43 2022 +0200

    TIKA-3795: move exclusions to parent
---
 tika-pipes/pom.xml | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

diff --git a/tika-pipes/pom.xml b/tika-pipes/pom.xml
index ab53acbc1..b88de89ad 100644
--- a/tika-pipes/pom.xml
+++ b/tika-pipes/pom.xml
@@ -42,7 +42,7 @@
 
   <dependencyManagement>
     <!-- this is caused by convergence errors in
-        azure-storage-blob 12.15.0 and its dependencies.
+        azure-storage-blob since 12.15.0 and its dependencies.
         Hopefully, we can get rid of this all with the
         next upgrade.
 
@@ -117,6 +117,27 @@
         <artifactId>netty-transport-native-epoll</artifactId>
         <version>${netty.version}</version>
       </dependency>
+      <dependency>
+        <groupId>io.projectreactor.netty</groupId>
+        <artifactId>reactor-netty-http</artifactId>
+        <version>1.0.20</version>
+      </dependency>
+      <dependency>
+        <groupId>io.projectreactor</groupId>
+        <artifactId>reactor-core</artifactId>
+        <version>3.4.19</version>
+      </dependency>
+      <dependency>
+        <groupId>com.azure</groupId>
+        <artifactId>azure-core-http-netty</artifactId>
+        <version>1.12.2</version>
+        <exclusions>
+            <exclusion>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-transport-native-epoll</artifactId>
+            </exclusion>
+        </exclusions>
+      </dependency>
     </dependencies>
   </dependencyManagement>
   <build>