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 14:57:05 UTC

[tika] 01/01: TIKA-4108 -- update jetbrain's annotations dependency

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

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

commit 95e3d5820b83ff507e95f11c300708a8db33cf0d
Author: tallison <ta...@apache.org>
AuthorDate: Thu Sep 21 10:56:36 2023 -0400

    TIKA-4108 -- update jetbrain's annotations dependency
---
 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 89d9ebc02..e142463c3 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>17.0.0</version>
     </dependency>
-
     <!-- test dependencies -->
     <dependency>
       <groupId>${project.groupId}</groupId>