Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The zstd dependency includes native libs and is not packaged with the tika-parsers-module.  If you'd like to parse zstd files, include:

Code Block
languagexml
titlezstd-jni
    <dependency>
      <groupId>com.github.luben</groupId>
      <artifactId>zstd-jni</artifactId>
      <version>1.5.0-4</version>
    </dependency>

...

If you plan to write TIFFs with Tika (rendering of PDF pages for OCR) or read JPEG2000, and if the BSD-3 with nuclear disclaimer license is acceptable to you, include:

Code Block
languagexml
titlejai-imageio-core
<dependency>
    <groupId>com.github.jai-imageio</groupId>
    <artifactId>jai-imageio-core</artifactId>
    <version>1.4.0</version>
</dependency>

If you plan on processing JPEG2000 images (most common use case would be rendering PDF pages for OCR), and if the BSD-3 with nuclear disclaimer license is acceptable to you,  include:

Code Block
languagexml
titlejpeg2000
<dependency>
    <groupId>com.github.jai-imageio</groupId>
    <artifactId>jai-imageio-jpeg2000</artifactId>
    <version>1.4.0</version>
</dependency>

...