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 2020/12/12 04:52:59 UTC

[tika] branch main updated: TIKA-3244: update jpeg2000

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


The following commit(s) were added to refs/heads/main by this push:
     new 001e605  TIKA-3244: update jpeg2000
001e605 is described below

commit 001e605ee6b048d8fb25f92ed1b4d3ff797941e5
Author: THausherr <ti...@snafu.de>
AuthorDate: Sat Dec 12 05:52:44 2020 +0100

    TIKA-3244: update jpeg2000
---
 .../tika-parser-image-module/pom.xml                           | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-image-module/pom.xml b/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-image-module/pom.xml
index 10dd5bf..d7c1111 100644
--- a/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-image-module/pom.xml
+++ b/tika-parsers/tika-parsers-classic/tika-parsers-classic-modules/tika-parser-image-module/pom.xml
@@ -47,6 +47,14 @@
             <artifactId>jai-imageio-core</artifactId>
             <version>${imageio.version}</version>
         </dependency>
+        <!-- For legal reasons (incompatible license), jai-imageio-jpeg2000 is to be used
+        only in the tests and may not be distributed. See also LEGAL-195 -->
+        <dependency>
+            <groupId>com.github.jai-imageio</groupId>
+            <artifactId>jai-imageio-jpeg2000</artifactId>
+            <version>${imageio.version}</version>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.apache.pdfbox</groupId>
             <artifactId>jbig2-imageio</artifactId>
@@ -90,4 +98,4 @@
             </plugin>
         </plugins>
     </build>
-</project>
\ No newline at end of file
+</project>