You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2020/10/13 05:00:46 UTC

[camel-quarkus] branch quarkus-master updated (07134f8 -> 46bf4b5)

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

github-bot pushed a change to branch quarkus-master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.


 discard 07134f8  Upgrade to Quarkus 1.10.0
     add 4eb9b5a  Updated CHANGELOG.md
     add 7bb1620  camel-quarkus-jira: Add resteasy-common dependency
     add d70ad47  Upgrade to Debezium 1.3.0.Final
     add b4e2490  Fix links to example projects
     add a076e0c  Document all ways to start a new project
     add a417446  Prevent CI workflows running on forks
     new 46bf4b5  Upgrade to Quarkus 1.10.0

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (07134f8)
            \
             N -- N -- N   refs/heads/quarkus-master (46bf4b5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/ci-build.yaml                    |   1 +
 .github/workflows/pr-validate.yml                  |   1 +
 CHANGELOG.md                                       |   2 +-
 .../modules/ROOT/pages/user-guide/first-steps.adoc | 125 ++++++++++++---------
 .../ROOT/pages/user-guide/observability.adoc       |   4 +-
 extensions/jira/deployment/pom.xml                 |   4 +
 extensions/jira/runtime/pom.xml                    |   4 +
 pom.xml                                            |   2 +-
 8 files changed, 83 insertions(+), 60 deletions(-)


[camel-quarkus] 01/01: Upgrade to Quarkus 1.10.0

Posted by gi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 46bf4b582b0cb666f365ceb2db055dddc386ff52
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Oct 8 10:21:45 2020 +0100

    Upgrade to Quarkus 1.10.0
---
 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 fdd7172..ada4f0e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -69,7 +69,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>999-SNAPSHOT</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>