You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2022/01/05 08:09:52 UTC

[camel-quarkus] branch quarkus-main updated (71b03fe -> ce94fe3)

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

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


 discard 71b03fe  java.lang.UnsatisfiedLinkError: no awt in java.library.path in native tests
 discard 8729f67  Exclude geronimo-jms from corda
 discard 5baacbc  ⬆️ Upgrade Quarkus to 2.7.0.CR1
     add e37ecd9  Restore maven-compiler-plugin source & target properties for intellij
     add 0d04362  Add test coverage for Quarkus SecurityIdentity & Principal in platform-http routes
     add b660cc6  Fix timestamp validation in syslog integration tests
     add 7bce4da  Exclude commons-logging from htmlunit-driver
     add 288bcd0  Setup a reproducer showing that camel.main.durationMaxSeconds is not honoured #3394
     add 2de0558  Updated CHANGELOG.md
     new 5bc3948  ⬆️ Upgrade Quarkus to 2.7.0.CR1
     new ea9d0db  Exclude geronimo-jms from corda
     new ce94fe3  java.lang.UnsatisfiedLinkError: no awt in java.library.path in native tests

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   (71b03fe)
            \
             N -- N -- N   refs/heads/quarkus-main (ce94fe3)

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 3 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:
 CHANGELOG.md                                       |  8 +++++
 .../pages/reference/extensions/platform-http.adoc  | 17 +++++++++++
 .../platform-http/runtime/src/main/doc/usage.adoc  | 17 +++++++++++
 .../apache/camel/quarkus/main/cmd/CamelRoute.java  |  5 ++--
 .../src/main/resources/application.properties      | 18 ------------
 .../camel/quarkus/main/cmd/it/CommandModeTest.java | 34 ++++++++++++++++++----
 integration-tests/platform-http/pom.xml            |  4 +++
 .../platform/http/it/PlatformHttpRouteBuilder.java | 16 ++++++++++
 .../src/main/resources/application.properties      |  7 +++++
 .../component/http/server/it/PlatformHttpTest.java | 29 ++++++++++++++++++
 .../quarkus/component/syslog/it/SyslogTest.java    | 21 +++++++------
 .../syslog/src/test/resources/rfc3164.txt          |  1 -
 .../syslog/src/test/resources/rfc5425.txt          |  1 -
 pom.xml                                            |  2 ++
 poms/bom-test/pom.xml                              | 10 +++++++
 poms/bom/pom.xml                                   |  4 +++
 16 files changed, 158 insertions(+), 36 deletions(-)
 delete mode 100644 integration-tests/main-command-mode/src/main/resources/application.properties
 delete mode 100644 integration-tests/syslog/src/test/resources/rfc3164.txt
 delete mode 100644 integration-tests/syslog/src/test/resources/rfc5425.txt

[camel-quarkus] 03/03: java.lang.UnsatisfiedLinkError: no awt in java.library.path in native tests

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

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

commit ce94fe3cacf48eff2a2b2113b54c28bbf75e50bf
Author: Freeman Fang <fr...@gmail.com>
AuthorDate: Thu Dec 23 12:08:42 2021 -0500

    java.lang.UnsatisfiedLinkError: no awt in java.library.path in native tests
---
 .../test/java/org/apache/camel/quarkus/component/pdf/it/PdfIT.java    | 4 ++++
 .../test/java/org/apache/camel/quarkus/component/tika/it/TikaIT.java  | 4 ++++
 2 files changed, 8 insertions(+)

diff --git a/integration-tests/pdf/src/test/java/org/apache/camel/quarkus/component/pdf/it/PdfIT.java b/integration-tests/pdf/src/test/java/org/apache/camel/quarkus/component/pdf/it/PdfIT.java
index ac326a9..15b137b 100644
--- a/integration-tests/pdf/src/test/java/org/apache/camel/quarkus/component/pdf/it/PdfIT.java
+++ b/integration-tests/pdf/src/test/java/org/apache/camel/quarkus/component/pdf/it/PdfIT.java
@@ -17,8 +17,12 @@
 package org.apache.camel.quarkus.component.pdf.it;
 
 import io.quarkus.test.junit.NativeImageTest;
+import org.junit.jupiter.api.condition.DisabledOnOs;
+import org.junit.jupiter.api.condition.OS;
 
 @NativeImageTest
+//https://github.com/apache/camel-quarkus/issues/3417
+@DisabledOnOs(OS.MAC)
 class PdfIT extends PdfTest {
 
 }
diff --git a/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaIT.java b/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaIT.java
index 48ce48a..3cbf97e 100644
--- a/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaIT.java
+++ b/integration-tests/tika/src/test/java/org/apache/camel/quarkus/component/tika/it/TikaIT.java
@@ -17,8 +17,12 @@
 package org.apache.camel.quarkus.component.tika.it;
 
 import io.quarkus.test.junit.NativeImageTest;
+import org.junit.jupiter.api.condition.DisabledOnOs;
+import org.junit.jupiter.api.condition.OS;
 
 @NativeImageTest
+//https://github.com/apache/camel-quarkus/issues/3417
+@DisabledOnOs(OS.MAC)
 class TikaIT extends TikaTest {
 
 }

[camel-quarkus] 01/03: ⬆️ Upgrade Quarkus to 2.7.0.CR1

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

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

commit 5bc39482dee17cd4273a12f7666a9120475806d5
Author: Freeman Fang <fr...@gmail.com>
AuthorDate: Tue Dec 21 15:58:04 2021 -0500

    ⬆️ Upgrade Quarkus to 2.7.0.CR1
---
 docs/antora.yml  | 2 +-
 pom.xml          | 6 +++---
 poms/bom/pom.xml | 4 ++++
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index 5d11b0b..7974faf 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -31,7 +31,7 @@ asciidoc:
     target-maven-version: 3.8.4 # replace ${target-maven-version}
     camel-version: 3.14.0 # replace ${camel.version}
     camel-docs-version: 3.14.x # replace ${camel.docs.components.version}
-    quarkus-version: 2.6.0.Final # replace ${quarkus.version}
+    quarkus-version: 999-SNAPSHOT # replace ${quarkus.version}
     # attributes used in xrefs to other Antora components
     cq-camel-components: 3.14.x@components # replace ${camel.docs.components.xref}
     quarkus-examples-version: latest
diff --git a/pom.xml b/pom.xml
index f0cc01f..90837ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -55,7 +55,7 @@
         <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.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.version>999-SNAPSHOT</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/ -->
 
@@ -68,7 +68,7 @@
         <awssdk.version>2.17.100</awssdk.version><!-- @sync io.quarkiverse.amazonservices:quarkus-amazon-services-parent:${quarkiverse-amazonservices.version} prop:awssdk.version -->
         <aws-java-sdk.version>1.11.714</aws-java-sdk.version>
         <azure-sdk-bom.version>1.0.5</azure-sdk-bom.version><!-- Keep in sync with camel-azure component versions -->
-        <bouncycastle.version>1.69</bouncycastle.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.bouncycastle:bcprov-jdk15on -->
+        <bouncycastle.version>1.70</bouncycastle.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.bouncycastle:bcprov-jdk15on -->
         <commons-beanutils.version>${commons-beanutils-version}</commons-beanutils.version>
         <commons-cli.version>1.4</commons-cli.version><!-- keep in sync with Quarkus, via quarkus-bootstrap-core -->
         <commons-collections.version>3.2.2</commons-collections.version><!-- used by hbase, should be pretty stable as commons-collections are not developed actively anymore -->
@@ -87,7 +87,7 @@
         <google-auth-library-credentials.version>0.22.2</google-auth-library-credentials.version><!-- @sync io.grpc:grpc-auth:${grpc.version} dep:com.google.auth:google-auth-library-credentials -->
         <guava.version>29.0-jre</guava.version>
         <graalvm.version>21.3.0</graalvm.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:org.graalvm.nativeimage:svm -->
-        <grpc.version>1.42.1</grpc.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:io.grpc:grpc-core -->
+        <grpc.version>1.43.1</grpc.version><!-- @sync io.quarkus:quarkus-bom:${quarkus.version} dep:io.grpc:grpc-core -->
         <gson.version>2.8.6</gson.version><!-- @sync com.ibm.jsonata4java:JSONata4Java:${jsonata4java-version} dep:com.google.code.gson:gson -->
         <guice-servlet.version>4.0</guice-servlet.version><!-- Spark -->
         <hadoop3.version>${hadoop3-version}</hadoop3.version><!-- Spark -->
diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml
index ecd81a6..057860a 100644
--- a/poms/bom/pom.xml
+++ b/poms/bom/pom.xml
@@ -662,6 +662,10 @@
                         <artifactId>jsr305</artifactId>
                     </exclusion>
                     <exclusion>
+                        <groupId>org.apache.activemq</groupId>
+                        <artifactId>*</artifactId>
+                    </exclusion>
+                    <exclusion>
                         <groupId>org.jboss.logmanager</groupId>
                         <artifactId>jboss-logmanager</artifactId>
                     </exclusion>

[camel-quarkus] 02/03: Exclude geronimo-jms from corda

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

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

commit ea9d0db27da1a7ad0f95fae6113652df05c45a03
Author: Zineb Bendhiba <be...@gmail.com>
AuthorDate: Thu Dec 23 14:46:53 2021 +0100

    Exclude geronimo-jms from corda
---
 extensions-jvm/corda/runtime/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/extensions-jvm/corda/runtime/pom.xml b/extensions-jvm/corda/runtime/pom.xml
index aa8b110..beed32e 100644
--- a/extensions-jvm/corda/runtime/pom.xml
+++ b/extensions-jvm/corda/runtime/pom.xml
@@ -67,6 +67,10 @@
                     <groupId>org.apache.logging.log4j</groupId>
                     <artifactId>log4j-core</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-jms_2.0_spec</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
     </dependencies>