You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zb...@apache.org on 2021/12/17 16:50:33 UTC

[camel-quarkus] branch main updated: ⬆️ Upgrade Tika version

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

zbendhiba pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
     new 393a026  ⬆️ Upgrade Tika version
393a026 is described below

commit 393a026f3dfab371da7da311709184a4a193412c
Author: Zineb Bendhiba <be...@gmail.com>
AuthorDate: Fri Dec 17 15:33:09 2021 +0100

    ⬆️ Upgrade Tika version
---
 docs/modules/ROOT/pages/reference/extensions/tika.adoc | 6 ++++--
 extensions/tika/runtime/src/main/doc/limitations.adoc  | 6 ++++--
 integration-tests/tika/pom.xml                         | 4 ++++
 pom.xml                                                | 2 +-
 4 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/tika.adoc b/docs/modules/ROOT/pages/reference/extensions/tika.adoc
index 028dcb3..752ea42 100644
--- a/docs/modules/ROOT/pages/reference/extensions/tika.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/tika.adoc
@@ -45,7 +45,7 @@ Parameters `tikaConfig` and `tikaConfigUri` are not available in quarkus camel t
 can be changed only via `application.properties`.
 
 While you can use any of the available https://tika.apache.org/1.24.1/formats.html[Tika parsers] in JVM mode,
-only some of those are supported in native mode - see the https://quarkus.io/guides/tika[Quarkus Tika guide].
+only some of those are supported in native mode - see the https://quarkiverse.github.io/quarkiverse-docs/quarkus-tika/dev/index.html[Quarkus Tika guide].
 
 Use of the Tika parser without any configuration will initialize all available parsers. Unfortunately as some of them
 don't work in the native mode, the whole execution will fail.
@@ -64,6 +64,8 @@ quarkus.tika.parsers = pdf,odf,office
 quarkus.tika.parser.office = org.apache.tika.parser.microsoft.OfficeParser
 ----
 
-For more information about selecting parsers see the https://quarkus.io/guides/tika[Quarkus Tika guide].
+For more information about selecting parsers see the https://quarkiverse.github.io/quarkiverse-docs/quarkus-tika/dev/index.html[Quarkus Tika guide].
+
+You may need to add the `quarkus-awt` extension to build the native image. For more information, see https://quarkiverse.github.io/quarkiverse-docs/quarkus-tika/dev/index.html[Quarkus Tika guide].
 
 
diff --git a/extensions/tika/runtime/src/main/doc/limitations.adoc b/extensions/tika/runtime/src/main/doc/limitations.adoc
index 9262dc9..8edfbed 100644
--- a/extensions/tika/runtime/src/main/doc/limitations.adoc
+++ b/extensions/tika/runtime/src/main/doc/limitations.adoc
@@ -2,7 +2,7 @@ Parameters `tikaConfig` and `tikaConfigUri` are not available in quarkus camel t
 can be changed only via `application.properties`.
 
 While you can use any of the available https://tika.apache.org/1.24.1/formats.html[Tika parsers] in JVM mode,
-only some of those are supported in native mode - see the https://quarkus.io/guides/tika[Quarkus Tika guide].
+only some of those are supported in native mode - see the https://quarkiverse.github.io/quarkiverse-docs/quarkus-tika/dev/index.html[Quarkus Tika guide].
 
 Use of the Tika parser without any configuration will initialize all available parsers. Unfortunately as some of them
 don't work in the native mode, the whole execution will fail.
@@ -21,5 +21,7 @@ quarkus.tika.parsers = pdf,odf,office
 quarkus.tika.parser.office = org.apache.tika.parser.microsoft.OfficeParser
 ----
 
-For more information about selecting parsers see the https://quarkus.io/guides/tika[Quarkus Tika guide].
+For more information about selecting parsers see the https://quarkiverse.github.io/quarkiverse-docs/quarkus-tika/dev/index.html[Quarkus Tika guide].
+
+You may need to add the `quarkus-awt` extension to build the native image. For more information, see https://quarkiverse.github.io/quarkiverse-docs/quarkus-tika/dev/index.html[Quarkus Tika guide].
 
diff --git a/integration-tests/tika/pom.xml b/integration-tests/tika/pom.xml
index c8577be..ff97734 100644
--- a/integration-tests/tika/pom.xml
+++ b/integration-tests/tika/pom.xml
@@ -44,6 +44,10 @@
             <groupId>io.quarkus</groupId>
             <artifactId>quarkus-resteasy</artifactId>
         </dependency>
+        <dependency>
+            <groupId>io.quarkus</groupId>
+            <artifactId>quarkus-awt</artifactId>
+        </dependency>
 
         <!-- test dependencies -->
         <dependency>
diff --git a/pom.xml b/pom.xml
index c15633d..7ed0791 100644
--- a/pom.xml
+++ b/pom.xml
@@ -54,7 +54,7 @@
         <quarkiverse-jgit.version>1.1.0</quarkiverse-jgit.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/jgit/quarkus-jgit-parent/ -->
         <quarkiverse-jsch.version>1.0.0</quarkiverse-jsch.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/jsch/quarkus-jsch-parent/ -->
         <quarkiverse-minio.version>2.3.0</quarkiverse-minio.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/minio/quarkus-minio-parent/ -->
-        <quarkiverse-tika.version>1.0.1</quarkiverse-tika.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ -->
+        <quarkiverse-tika.version>1.0.2</quarkiverse-tika.version><!-- https://repo1.maven.org/maven2/io/quarkiverse/tika/quarkus-tika-parent/ -->
         <quarkus.version>2.6.0.Final</quarkus.version><!-- https://repo1.maven.org/maven2/io/quarkus/quarkus-bom/ -->
         <quarkus-hazelcast-client.version>2.0.0</quarkus-hazelcast-client.version><!-- https://repo1.maven.org/maven2/com/hazelcast/quarkus-hazelcast-client-bom/ -->
         <quarkus-qpid-jms.version>0.30.0</quarkus-qpid-jms.version><!-- https://repo1.maven.org/maven2/org/amqphub/quarkus/quarkus-qpid-jms-bom/ -->