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 2023/09/21 15:33:08 UTC

[tika] branch branch_2x updated: TIKA-4108 (#1351)

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 f83d86c16 TIKA-4108 (#1351)
f83d86c16 is described below

commit f83d86c168b7ed75f9bdb0b5f520d64cb597b5fa
Author: Tim Allison <ta...@apache.org>
AuthorDate: Thu Sep 21 11:30:17 2023 -0400

    TIKA-4108 (#1351)
    
    * TIKA-4108 -- update jetbrain's annotations dependency
    
    (cherry picked from commit 55989e1f81a1d626c30177f1068ae4c3a2a13679)
---
 tika-langdetect/tika-langdetect-optimaize/pom.xml | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/tika-langdetect/tika-langdetect-optimaize/pom.xml b/tika-langdetect/tika-langdetect-optimaize/pom.xml
index 76c6406ea..e20a0a411 100644
--- a/tika-langdetect/tika-langdetect-optimaize/pom.xml
+++ b/tika-langdetect/tika-langdetect-optimaize/pom.xml
@@ -28,14 +28,23 @@
   <artifactId>tika-langdetect-optimaize</artifactId>
   <name>Apache Tika Optimaize langdetect</name>
 
-
   <dependencies>
     <dependency>
       <groupId>com.optimaize.languagedetector</groupId>
       <artifactId>language-detector</artifactId>
       <version>${optimaize.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>com.intellij</groupId>
+          <artifactId>annotations</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+      <groupId>org.jetbrains</groupId>
+      <artifactId>annotations</artifactId>
+      <version>24.0.1</version>
     </dependency>
-
     <!-- test dependencies -->
     <dependency>
       <groupId>${project.groupId}</groupId>