This is an automated email from the ASF dual-hosted git repository.
aldettinger pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/master by this push:
new 25a72bc Upgrade Quarkus to 1.9.0.Final
25a72bc is described below
commit 25a72bcebb8e5c033a5d064c82af592da0073c7b
Author: James Netherton <[email protected]>
AuthorDate: Wed Oct 14 15:36:20 2020 +0100
Upgrade Quarkus to 1.9.0.Final
---
extensions/tika/deployment/pom.xml | 8 +++++++-
integration-tests/tika/pom.xml | 8 +++++++-
pom.xml | 2 +-
3 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/extensions/tika/deployment/pom.xml
b/extensions/tika/deployment/pom.xml
index 8cf8733..fca638f 100644
--- a/extensions/tika/deployment/pom.xml
+++ b/extensions/tika/deployment/pom.xml
@@ -32,7 +32,13 @@
<dependencies>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
- <artifactId>camel-quarkus-core-deployment</artifactId>
+ <artifactId>camel-quarkus-core-deployment</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jsoup</groupId>
+ <artifactId>jsoup</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
diff --git a/integration-tests/tika/pom.xml b/integration-tests/tika/pom.xml
index ad9b032..218cd33 100644
--- a/integration-tests/tika/pom.xml
+++ b/integration-tests/tika/pom.xml
@@ -60,7 +60,13 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
- <scope>test</scope>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jsoup</groupId>
+ <artifactId>jsoup</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
diff --git a/pom.xml b/pom.xml
index 14dc6ae..d82676c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -74,7 +74,7 @@
<nimbus-jose-jwt.version>4.41.1</nimbus-jose-jwt.version><!-- Mess in
hdfs transitive deps -->
<okhttp.version>3.14.6</okhttp.version><!-- keep in sync with okio -->
<okio.version>1.17.2</okio.version><!-- keep in sync with okhttp -->
- <quarkus.version>1.9.0.CR1</quarkus.version>
+ <quarkus.version>1.9.0.Final</quarkus.version>
<quarkus-qpid-jms.version>0.18.0</quarkus-qpid-jms.version>
<protobuf.version>3.11.1</protobuf.version>
<retrofit.version>2.5.0</retrofit.version>