[camel-quarkus] 02/03: Upgrade Yaml Routes to Yaml 3.15 style

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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

commit 9fa82e1c5f1083a298a385f9566a61ca2f3d0c19
Author: Zineb Bendhiba 
AuthorDate: Thu Dec 23 15:04:58 2021 +0100

Upgrade Yaml Routes to Yaml 3.15 style
---
 .../route-configurations/src/main/resources/yaml/routes.yaml  | 11 ++-
 .../main-yaml/src/main/resources/routes/my-rests.yaml |  9 +
 .../main-yaml/src/main/resources/routes/my-routes.yaml| 11 ++-
 3 files changed, 17 insertions(+), 14 deletions(-)

diff --git 
a/integration-test-groups/foundation/route-configurations/src/main/resources/yaml/routes.yaml
 
b/integration-test-groups/foundation/route-configurations/src/main/resources/yaml/routes.yaml
index 6e5418f..fd4dc34 100644
--- 
a/integration-test-groups/foundation/route-configurations/src/main/resources/yaml/routes.yaml
+++ 
b/integration-test-groups/foundation/route-configurations/src/main/resources/yaml/routes.yaml
@@ -17,8 +17,9 @@
 
 - route:
 route-configuration-id: "xmlRouteConfiguration"
-from: "direct:yamlRoute"
-steps:
-  - throw-exception:
-  exception-type: 
"org.apache.camel.quarkus.core.it.routeconfigurations.RouteConfigurationsException"
-  message: "Intentional exception to trigger onException in 
xmlRouteConfiguration"
\ No newline at end of file
+from:
+uri: "direct:yamlRoute"
+steps:
+  - throw-exception:
+  exception-type: 
"org.apache.camel.quarkus.core.it.routeconfigurations.RouteConfigurationsException"
+  message: "Intentional exception to trigger onException in 
xmlRouteConfiguration"
\ No newline at end of file
diff --git 
a/integration-tests/main-yaml/src/main/resources/routes/my-rests.yaml 
b/integration-tests/main-yaml/src/main/resources/routes/my-rests.yaml
index b246556..fd1f1b6 100644
--- a/integration-tests/main-yaml/src/main/resources/routes/my-rests.yaml
+++ b/integration-tests/main-yaml/src/main/resources/routes/my-rests.yaml
@@ -22,7 +22,8 @@
 to: "direct:rest"
 - route:
 id: "rest-route"
-from: "direct:rest"
-steps:
-  - set-body:
-  constant: "Hello World!!!"
+from:
+  uri: "direct:rest"
+  steps:
+- set-body:
+constant: "Hello World!!!"
diff --git 
a/integration-tests/main-yaml/src/main/resources/routes/my-routes.yaml 
b/integration-tests/main-yaml/src/main/resources/routes/my-routes.yaml
index e6ae42f..d0a6f53 100644
--- a/integration-tests/main-yaml/src/main/resources/routes/my-routes.yaml
+++ b/integration-tests/main-yaml/src/main/resources/routes/my-routes.yaml
@@ -17,8 +17,9 @@
 
 - route:
 id: "my-yaml-route"
-from: "timer:from-xml?period=3000"
-steps:
-  - set-body:
-  constant: "Hello World!!!"
-  - to: "log:from-yaml"
+from:
+  uri: "timer:from-xml?period=3000"
+  steps:
+- set-body:
+constant: "Hello World!!!"
+- to: "log:from-yaml"


[camel-quarkus] 03/03: Disable Fhir tests

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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

commit cc7b889b77eeb7de3c05e6f718e302f774f8
Author: Zineb Bendhiba 
AuthorDate: Fri Dec 24 12:36:00 2021 +0100

Disable Fhir tests
---
 .../java/org/apache/camel/quarkus/component/fhir/it/FhirClientIT.java   | 2 ++
 .../java/org/apache/camel/quarkus/component/fhir/it/FhirClientTest.java | 2 ++
 .../org/apache/camel/quarkus/component/fhir/it/FhirDataformatIT.java| 2 ++
 .../org/apache/camel/quarkus/component/fhir/it/FhirDataformatTest.java  | 2 ++
 4 files changed, 8 insertions(+)

diff --git 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientIT.java
 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientIT.java
index 27d3862..7da92c4 100644
--- 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientIT.java
+++ 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientIT.java
@@ -17,8 +17,10 @@
 package org.apache.camel.quarkus.component.fhir.it;
 
 import io.quarkus.test.junit.NativeImageTest;
+import org.junit.jupiter.api.Disabled;
 
 @NativeImageTest
+@Disabled //https://github.com/apache/camel-quarkus/issues/3416
 class FhirClientIT extends FhirClientTest {
 
 }
diff --git 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientTest.java
 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientTest.java
index b5967a3..3f677ce 100644
--- 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientTest.java
+++ 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirClientTest.java
@@ -24,10 +24,12 @@ import io.restassured.http.ContentType;
 import org.apache.camel.quarkus.component.fhir.FhirFlags;
 import org.apache.camel.quarkus.test.EnabledIf;
 import org.jboss.logging.Logger;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 @QuarkusTest
 @QuarkusTestResource(FhirTestResource.class)
+@Disabled //https://github.com/apache/camel-quarkus/issues/3416
 class FhirClientTest {
 private static final Logger LOG = Logger.getLogger(FhirClientTest.class);
 
diff --git 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatIT.java
 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatIT.java
index d6b0209..9ee54ee 100644
--- 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatIT.java
+++ 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.fhir.it;
 
 import io.quarkus.test.junit.NativeImageTest;
+import org.junit.jupiter.api.Disabled;
 
 @NativeImageTest
+@Disabled //https://github.com/apache/camel-quarkus/issues/3416
 class FhirDataformatIT extends FhirDataformatTest {
 }
diff --git 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatTest.java
 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatTest.java
index b2a4193..9f8229d 100644
--- 
a/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatTest.java
+++ 
b/integration-tests/fhir/src/test/java/org/apache/camel/quarkus/component/fhir/it/FhirDataformatTest.java
@@ -24,9 +24,11 @@ import org.apache.camel.quarkus.component.fhir.FhirFlags;
 import org.apache.camel.quarkus.test.EnabledIf;
 import org.hl7.fhir.dstu3.model.Patient;
 import org.jboss.logging.Logger;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 @QuarkusTest
+@Disabled //https://github.com/apache/camel-quarkus/issues/3416
 class FhirDataformatTest {
 private static final Logger LOG = 
Logger.getLogger(FhirDataformatTest.class);
 


[camel-quarkus] 01/03: ⬆️ Upgrade to Camel 3.15

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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

commit 7a024907caed7324c947e6dbbe97c2019d591934
Author: Zineb Bendhiba 
AuthorDate: Wed Dec 22 16:16:52 2021 +0100

⬆️ Upgrade to Camel 3.15
---
 docs/antora.yml  | 6 +++---
 docs/modules/ROOT/examples/components/azure-eventhubs.yml| 2 +-
 docs/modules/ROOT/examples/components/azure-storage-blob.yml | 2 +-
 docs/modules/ROOT/examples/components/azure-storage-datalake.yml | 2 +-
 docs/modules/ROOT/examples/components/azure-storage-queue.yml| 2 +-
 pom.xml  | 6 +++---
 6 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/docs/antora.yml b/docs/antora.yml
index be367c8..6180c1b 100644
--- a/docs/antora.yml
+++ b/docs/antora.yml
@@ -28,11 +28,11 @@ asciidoc:
 
 min-maven-version: 3.6.2 # replace ${min-maven-version}
 target-maven-version: 3.8.4 # replace ${target-maven-version}
-camel-version: 3.14.0 # replace ${camel.version}
+camel-version: 3.15.0-SNAPSHOT # replace ${camel.version}
 quarkus-version: 2.6.0.Final # replace ${quarkus.version}
 # attributes used in xrefs to other Antora components
-cq-camel-components: 3.14.x@components # replace 
${camel.docs.components.xref}
+cq-camel-components: 3.15.x@components # replace 
${camel.docs.components.xref}
 quarkus-examples-version: latest
 # indexTable common
-indexer-version: 3.14.x # replace ${camel.docs.components.version}
+indexer-version: 3.15.x # replace ${camel.docs.components.version}
 indexer-component: camel-quarkus
diff --git a/docs/modules/ROOT/examples/components/azure-eventhubs.yml 
b/docs/modules/ROOT/examples/components/azure-eventhubs.yml
index 52f94e8..4d09d2a 100644
--- a/docs/modules/ROOT/examples/components/azure-eventhubs.yml
+++ b/docs/modules/ROOT/examples/components/azure-eventhubs.yml
@@ -9,5 +9,5 @@ cqJvmSince: 1.7.0
 cqNativeSince: 1.7.0
 cqCamelPartName: azure-eventhubs
 cqCamelPartTitle: Azure Event Hubs
-cqCamelPartDescription: The azure-eventhubs component that integrates Azure 
Event Hubs using AMQP protocol. Azure EventHubs is a highly scalable 
publish-subscribe service that can ingest millions of events per second and 
stream them to multiple consumers.
+cqCamelPartDescription: Send and receive events to/from Azure Event Hubs using 
AMQP protocol.
 cqExtensionPageTitle: Azure Event Hubs
diff --git a/docs/modules/ROOT/examples/components/azure-storage-blob.yml 
b/docs/modules/ROOT/examples/components/azure-storage-blob.yml
index dfce732..42cfb5c 100644
--- a/docs/modules/ROOT/examples/components/azure-storage-blob.yml
+++ b/docs/modules/ROOT/examples/components/azure-storage-blob.yml
@@ -9,5 +9,5 @@ cqJvmSince: 1.1.0
 cqNativeSince: 1.6.0
 cqCamelPartName: azure-storage-blob
 cqCamelPartTitle: Azure Storage Blob Service
-cqCamelPartDescription: Store and retrieve blobs from Azure Storage Blob 
Service using SDK v12.
+cqCamelPartDescription: Store and retrieve blobs from Azure Storage Blob 
Service.
 cqExtensionPageTitle: Azure Storage Blob Service
diff --git a/docs/modules/ROOT/examples/components/azure-storage-datalake.yml 
b/docs/modules/ROOT/examples/components/azure-storage-datalake.yml
index c66aa04..a768d99 100644
--- a/docs/modules/ROOT/examples/components/azure-storage-datalake.yml
+++ b/docs/modules/ROOT/examples/components/azure-storage-datalake.yml
@@ -9,5 +9,5 @@ cqJvmSince: 1.8.0
 cqNativeSince: n/a
 cqCamelPartName: azure-storage-datalake
 cqCamelPartTitle: Azure Storage Datalake Service
-cqCamelPartDescription: Camel Azure Datalake Gen2 Component
+cqCamelPartDescription: Sends and receives files to/from Azure DataLake 
Storage.
 cqExtensionPageTitle: Azure storage datalake service
diff --git a/docs/modules/ROOT/examples/components/azure-storage-queue.yml 
b/docs/modules/ROOT/examples/components/azure-storage-queue.yml
index edb634d..87d5d8e 100644
--- a/docs/modules/ROOT/examples/components/azure-storage-queue.yml
+++ b/docs/modules/ROOT/examples/components/azure-storage-queue.yml
@@ -9,5 +9,5 @@ cqJvmSince: 1.1.0
 cqNativeSince: 1.7.0
 cqCamelPartName: azure-storage-queue
 cqCamelPartTitle: Azure Storage Queue Service
-cqCamelPartDescription: The azure-storage-queue component is used for storing 
and retrieving the messages to/from Azure Storage Queue using Azure SDK v12.
+cqCamelPartDescription: Stores and retrieves messages to/from Azure Storage 
Queue.
 cqExtensionPageTitle: Azure Storage Queue Service
diff --git a/pom.xml b/pom.xml
index e4a9d1b..671b910 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
 
 org.apache.camel
 camel-dependencies
-3.14.0
+3.15.0-SNAPSHOT
 
 
 org.apache.camel.quarkus
@@ -39,8 +39,8 @@
 
 
 
-3.14 
-${camel.major.minor}.0
+3.15 

[camel-quarkus] branch camel-main updated (e8a1429 -> cc78888)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


 discard e8a1429  Disable Fhir tests
 discard 4fedef9  Upgrade Yaml Routes to Yaml 3.15 style
 discard 8c521c3  ⬆️ Upgrade to Camel 3.15
 add 5de53f0  Updated CHANGELOG.md
 new 7a02490  ⬆️ Upgrade to Camel 3.15
 new 9fa82e1  Upgrade Yaml Routes to Yaml 3.15 style
 new cc7  Disable Fhir 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   (e8a1429)
\
 N -- N -- N   refs/heads/camel-main (cc7)

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 | 4 
 1 file changed, 4 insertions(+)


[GitHub] [camel-quarkus] github-actions[bot] commented on issue #2926: [CI] - Quarkus Main Branch Build Failure

2021-12-25 Thread GitBox


github-actions[bot] commented on issue #2926:
URL: https://github.com/apache/camel-quarkus/issues/2926#issuecomment-1001106283


   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 1623070521-612-ff2b6cb9-17b4-45b0-9809-4af01fa10900
   * Camel Quarkus Commit: a4fd07a82caa75b33456403b60cb19a6ddcad613
   
   * Quarkus Main Commit: 5de53f019d32d6217f1e0237bb88923b0c630e96
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/1623070521


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (11d43a0 -> 62760f3)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit 11d43a0  Regen for commit afcb9f4ca3d1730e437558aa2d39623dc38aa933
 add 62760f3  CAMEL-17319: Regen

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   (11d43a0)
\
 N -- N -- N   refs/heads/regen_bot (62760f3)

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.

No new revisions were added by this update.

Summary of changes:


[camel] branch main created (now 62760f3)

2021-12-25 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

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


  at 62760f3  CAMEL-17319: Regen

This branch includes the following new commits:

 new 62760f3  CAMEL-17319: Regen

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.



[camel] 01/01: CAMEL-17319: Regen

2021-12-25 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

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

commit 62760f3621faa27a32d305c807314a1dee4f2e7d
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 16:53:02 2021 +0100

CAMEL-17319: Regen
---
 docs/components/modules/ROOT/examples/json/milo-browse.json   | 1 +
 docs/components/modules/ROOT/nav.adoc | 1 +
 docs/components/modules/ROOT/pages/milo-browse-component.adoc | 1 +
 3 files changed, 3 insertions(+)

diff --git a/docs/components/modules/ROOT/examples/json/milo-browse.json 
b/docs/components/modules/ROOT/examples/json/milo-browse.json
new file mode 12
index 000..f11423b
--- /dev/null
+++ b/docs/components/modules/ROOT/examples/json/milo-browse.json
@@ -0,0 +1 @@
+../../../../../../components/camel-milo/src/generated/resources/org/apache/camel/component/milo/browse/milo-browse.json
\ No newline at end of file
diff --git a/docs/components/modules/ROOT/nav.adoc 
b/docs/components/modules/ROOT/nav.adoc
index 23faee5..687accf 100644
--- a/docs/components/modules/ROOT/nav.adoc
+++ b/docs/components/modules/ROOT/nav.adoc
@@ -247,6 +247,7 @@
 ** xref:oaipmh-component.adoc[OAI-PMH]
 ** xref:olingo2-component.adoc[Olingo2]
 ** xref:olingo4-component.adoc[Olingo4]
+** xref:milo-browse-component.adoc[OPC UA Browser]
 ** xref:milo-client-component.adoc[OPC UA Client]
 ** xref:milo-server-component.adoc[OPC UA Server]
 ** xref:openstack-summary.adoc[OpenStack]
diff --git a/docs/components/modules/ROOT/pages/milo-browse-component.adoc 
b/docs/components/modules/ROOT/pages/milo-browse-component.adoc
new file mode 12
index 000..b0cf7cf
--- /dev/null
+++ b/docs/components/modules/ROOT/pages/milo-browse-component.adoc
@@ -0,0 +1 @@
+../../../../../components/camel-milo/src/main/docs/milo-browse-component.adoc
\ No newline at end of file


[GitHub] [camel] oscerd merged pull request #6594: Generated sources regen

2021-12-25 Thread GitBox


oscerd merged pull request #6594:
URL: https://github.com/apache/camel/pull/6594


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (32d1e6c -> 11d43a0)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from 32d1e6c  CAMEL-17354: Deprecate a number of components that are not 
active mantained by 3rd party
 add f417456  CAMEL-17382: camel-jsh-dsl - JavaShell DSL support
 add 365e2c2  CAMEL-17382: camel-jsh-dsl - JavaShell DSL support
 add acc3024  CAMEL-17319: Camel Milo: Browsing functionality (#6526)
 add 7849259  CAMEL-17319: Regen
 add afcb9f4  CAMEL-17319: Regen
 add 11d43a0  Regen for commit afcb9f4ca3d1730e437558aa2d39623dc38aa933

No new revisions were added by this update.

Summary of changes:
 bom/camel-bom/pom.xml  |   5 +
 .../org/apache/camel/catalog/components.properties |   1 +
 .../camel/catalog/components/milo-browse.json  |  82 +++
 components/camel-milo/pom.xml  |  16 -
 .../milo/browse/MiloBrowseComponentConfigurer.java | 196 ++
 .../milo/browse/MiloBrowseEndpointConfigurer.java  | 202 ++
 .../milo/browse/MiloBrowseEndpointUriFactory.java  |  93 +++
 .../services/org/apache/camel/component.properties |   2 +-
 .../org/apache/camel/component/milo-browse |   2 +
 .../apache/camel/configurer/milo-browse-component  |   2 +
 .../apache/camel/configurer/milo-browse-endpoint   |   2 +
 .../apache/camel/urifactory/milo-browse-endpoint   |   2 +
 .../camel/component/milo/browse/milo-browse.json   |  82 +++
 .../src/main/docs/milo-browse-component.adoc   |  92 +++
 .../org/apache/camel/component/milo/NodeIds.java   |   3 +
 .../component/milo/browse/MiloBrowseComponent.java | 100 +++
 .../component/milo/browse/MiloBrowseEndpoint.java  | 247 +++
 .../component/milo/browse/MiloBrowseProducer.java  | 149 
 .../milo/client/MiloClientConnection.java  |  11 +
 .../component/milo/client/MiloClientProducer.java  |   4 +-
 .../milo/client/internal/SubscriptionManager.java  | 223 +-
 .../component/milo/AbstractMiloServerTest.java |  20 +
 .../component/milo/browse/BrowseServerTest.java| 381 ++
 .../component/milo/call/MockCamelNamespace.java|   1 -
 .../src/test/resources/log4j2.properties   |   6 +
 .../org/apache/camel/main/components.properties|   1 +
 .../modules/ROOT/examples/json/milo-browse.json|   1 +
 docs/components/modules/ROOT/nav.adoc  |   1 +
 .../modules/ROOT/pages/milo-browse-component.adoc  |   1 +
 docs/components/modules/others/nav.adoc|   1 +
 docs/components/modules/others/pages/jsh-dsl.adoc  |   1 +
 .../component/ComponentsBuilderFactory.java|  14 +
 .../dsl/MiloBrowseComponentBuilderFactory.java | 489 +
 .../src/generated/resources/metadata.json  |  22 +
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 +
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 +
 .../builder/endpoint/StaticEndpointBuilders.java   |  45 ++
 .../dsl/MiloBrowseEndpointBuilderFactory.java  | 782 +
 dsl/camel-jsh-dsl/pom.xml  | 145 
 .../services/org/apache/camel/routes-loader/jsh|   2 +
 dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc   |  12 +
 .../main/java/org/apache/camel/dsl/jsh/Jsh.java| 135 
 .../org/apache/camel/dsl/jsh/JshClassLoader.java   |  52 ++
 .../apache/camel/dsl/jsh/JshLoaderDelegate.java|  80 +++
 .../camel/dsl/jsh/JshRoutesBuilderLoader.java  | 112 +++
 .../apache/camel/dsl/jsh/JshSourceLoaderTest.java  |  60 ++
 .../src/test/resources/log4j2-test.properties  |   7 +-
 .../src/test/resources/routes/MyRoute.jsh  |  20 +
 .../EndpointProducerDeserializersResolver.java |   1 +
 dsl/pom.xml|   1 +
 parent/pom.xml |   5 +
 51 files changed, 3885 insertions(+), 31 deletions(-)
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/milo-browse.json
 create mode 100644 
components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseComponentConfigurer.java
 create mode 100644 
components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseEndpointConfigurer.java
 create mode 100644 
components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseEndpointUriFactory.java
 create mode 100644 
components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/component/milo-browse
 create mode 100644 
components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/configurer/milo-browse-component
 create mode 100644 
components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/configurer/milo-browse-endpoint
 create mode 100644 
components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/urifactory/milo-browse-endpoint
 create mode 100644 

[GitHub] [camel] github-actions[bot] opened a new pull request #6594: Generated sources regen

2021-12-25 Thread GitBox


github-actions[bot] opened a new pull request #6594:
URL: https://github.com/apache/camel/pull/6594


   Regen bot :robot: found some uncommited changes after running build on 
:camel: main.
   Please do not delete `regen_bot` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel-spring-boot] branch main updated: CAMEL-17319: Regen

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 3fb8526  CAMEL-17319: Regen
3fb8526 is described below

commit 3fb852630ea6691aedd9fc3dfe5909565e855287
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 17:05:28 2021 +0100

CAMEL-17319: Regen
---
 .../camel/springboot/catalog/components.properties |   1 +
 .../springboot/catalog/components/milo-browse.json |  82 +
 .../camel-milo-starter/src/main/docs/milo.json | 172 ++
 .../MiloBrowseComponentAutoConfiguration.java  |  79 +
 .../MiloBrowseComponentConfiguration.java  | 348 +
 .../springboot/MiloBrowseComponentConverter.java   |  67 
 .../src/main/resources/META-INF/spring.factories   |   6 +-
 tooling/camel-spring-boot-dependencies/pom.xml |   5 +
 8 files changed, 759 insertions(+), 1 deletion(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
index 0f63441..8f68d0c 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components.properties
@@ -219,6 +219,7 @@ lumberjack
 master
 metrics
 micrometer
+milo-browse
 milo-client
 milo-server
 mina
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/milo-browse.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/milo-browse.json
new file mode 100644
index 000..293e0fb
--- /dev/null
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/milo-browse.json
@@ -0,0 +1,82 @@
+{
+  "component": {
+"kind": "component",
+"name": "milo-browse",
+"title": "OPC UA Browser",
+"description": "Connect to OPC UA servers using the binary protocol for 
browsing the node tree.",
+"deprecated": false,
+"firstVersion": "3.15.0",
+"label": "iot",
+"javaType": "org.apache.camel.component.milo.browse.MiloBrowseComponent",
+"supportLevel": "Preview",
+"groupId": "org.apache.camel.springboot",
+"artifactId": "camel-milo-starter",
+"version": "3.15.0-SNAPSHOT",
+"scheme": "milo-browse",
+"extendsScheme": "",
+"syntax": "milo-browse:endpointUri",
+"async": false,
+"api": false,
+"consumerOnly": false,
+"producerOnly": true,
+"lenientProperties": false
+  },
+  "componentProperties": {
+"clientId": { "kind": "property", "displayName": "Client Id", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.milo.client.MiloClientConfiguration", 
"configurationField": "configuration", "description": "A virtual client id to 
force the creation of a new connection instance" },
+"configuration": { "kind": "property", "displayName": "Configuration", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.milo.client.MiloClientConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": "All 
default options for client configurations" },
+"discoveryEndpointSuffix": { "kind": "property", "displayName": "Discovery 
Endpoint Suffix", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.milo.client.MiloClientConfiguration", 
"configurationField": "configuration", "description": "A suffix for endpoint 
URI when discovering" },
+"discoveryEndpointUri": { "kind": "property", "displayName": "Discovery 
Endpoint Uri", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.milo.client.MiloClientConfiguration", 
"configurationField": "configuration", "description": "An alternative discovery 
URI" },
+"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting 

[camel] branch main updated: CAMEL-17319: Regen

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 62760f3  CAMEL-17319: Regen
62760f3 is described below

commit 62760f3621faa27a32d305c807314a1dee4f2e7d
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 16:53:02 2021 +0100

CAMEL-17319: Regen
---
 docs/components/modules/ROOT/examples/json/milo-browse.json   | 1 +
 docs/components/modules/ROOT/nav.adoc | 1 +
 docs/components/modules/ROOT/pages/milo-browse-component.adoc | 1 +
 3 files changed, 3 insertions(+)

diff --git a/docs/components/modules/ROOT/examples/json/milo-browse.json 
b/docs/components/modules/ROOT/examples/json/milo-browse.json
new file mode 12
index 000..f11423b
--- /dev/null
+++ b/docs/components/modules/ROOT/examples/json/milo-browse.json
@@ -0,0 +1 @@
+../../../../../../components/camel-milo/src/generated/resources/org/apache/camel/component/milo/browse/milo-browse.json
\ No newline at end of file
diff --git a/docs/components/modules/ROOT/nav.adoc 
b/docs/components/modules/ROOT/nav.adoc
index 23faee5..687accf 100644
--- a/docs/components/modules/ROOT/nav.adoc
+++ b/docs/components/modules/ROOT/nav.adoc
@@ -247,6 +247,7 @@
 ** xref:oaipmh-component.adoc[OAI-PMH]
 ** xref:olingo2-component.adoc[Olingo2]
 ** xref:olingo4-component.adoc[Olingo4]
+** xref:milo-browse-component.adoc[OPC UA Browser]
 ** xref:milo-client-component.adoc[OPC UA Client]
 ** xref:milo-server-component.adoc[OPC UA Server]
 ** xref:openstack-summary.adoc[OpenStack]
diff --git a/docs/components/modules/ROOT/pages/milo-browse-component.adoc 
b/docs/components/modules/ROOT/pages/milo-browse-component.adoc
new file mode 12
index 000..b0cf7cf
--- /dev/null
+++ b/docs/components/modules/ROOT/pages/milo-browse-component.adoc
@@ -0,0 +1 @@
+../../../../../components/camel-milo/src/main/docs/milo-browse-component.adoc
\ No newline at end of file


[camel] 02/02: CAMEL-17319: Regen

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit afcb9f4ca3d1730e437558aa2d39623dc38aa933
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 16:14:35 2021 +0100

CAMEL-17319: Regen
---
 .../org/apache/camel/catalog/components.properties |   1 +
 .../camel/catalog/components/milo-browse.json  |  82 +++
 .../org/apache/camel/main/components.properties|   1 +
 .../component/ComponentsBuilderFactory.java|  14 +
 .../dsl/MiloBrowseComponentBuilderFactory.java | 489 +
 .../src/generated/resources/metadata.json  |  22 +
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 +
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 +
 .../builder/endpoint/StaticEndpointBuilders.java   |  45 ++
 .../dsl/MiloBrowseEndpointBuilderFactory.java  | 782 +
 .../EndpointProducerDeserializersResolver.java |   1 +
 11 files changed, 1439 insertions(+)

diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
index 2cc22bc..4e8cbd8 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
@@ -219,6 +219,7 @@ master
 metrics
 micrometer
 microprofile-metrics
+milo-browse
 milo-client
 milo-server
 mina
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/milo-browse.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/milo-browse.json
new file mode 100644
index 000..d4f75d1
--- /dev/null
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/milo-browse.json
@@ -0,0 +1,82 @@
+{
+  "component": {
+"kind": "component",
+"name": "milo-browse",
+"title": "OPC UA Browser",
+"description": "Connect to OPC UA servers using the binary protocol for 
browsing the node tree.",
+"deprecated": false,
+"firstVersion": "3.15.0",
+"label": "iot",
+"javaType": "org.apache.camel.component.milo.browse.MiloBrowseComponent",
+"supportLevel": "Preview",
+"groupId": "org.apache.camel",
+"artifactId": "camel-milo",
+"version": "3.15.0-SNAPSHOT",
+"scheme": "milo-browse",
+"extendsScheme": "",
+"syntax": "milo-browse:endpointUri",
+"async": false,
+"api": false,
+"consumerOnly": false,
+"producerOnly": true,
+"lenientProperties": false
+  },
+  "componentProperties": {
+"clientId": { "kind": "property", "displayName": "Client Id", "group": 
"producer", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"configurationClass": 
"org.apache.camel.component.milo.client.MiloClientConfiguration", 
"configurationField": "configuration", "description": "A virtual client id to 
force the creation of a new connection instance" },
+"configuration": { "kind": "property", "displayName": "Configuration", 
"group": "producer", "label": "", "required": false, "type": "object", 
"javaType": "org.apache.camel.component.milo.client.MiloClientConfiguration", 
"deprecated": false, "autowired": false, "secret": false, "description": "All 
default options for client configurations" },
+"discoveryEndpointSuffix": { "kind": "property", "displayName": "Discovery 
Endpoint Suffix", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.milo.client.MiloClientConfiguration", 
"configurationField": "configuration", "description": "A suffix for endpoint 
URI when discovering" },
+"discoveryEndpointUri": { "kind": "property", "displayName": "Discovery 
Endpoint Uri", "group": "producer", "label": "", "required": false, "type": 
"string", "javaType": "java.lang.String", "deprecated": false, "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.milo.client.MiloClientConfiguration", 
"configurationField": "configuration", "description": "An alternative discovery 
URI" },
+"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
+"autowiredEnabled": { "kind": 

[camel] branch main updated (acc3024 -> afcb9f4)

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from acc3024  CAMEL-17319: Camel Milo: Browsing functionality (#6526)
 new 7849259  CAMEL-17319: Regen
 new afcb9f4  CAMEL-17319: Regen

The 2 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:
 .../org/apache/camel/catalog/components.properties |   1 +
 .../camel/catalog/components/milo-browse.json  |  82 +++
 .../milo/browse/MiloBrowseComponentConfigurer.java | 196 ++
 .../milo/browse/MiloBrowseEndpointConfigurer.java  | 202 ++
 .../milo/browse/MiloBrowseEndpointUriFactory.java  |  93 +++
 .../services/org/apache/camel/component.properties |   2 +-
 .../apache/camel/configurer/milo-browse-component  |   2 +
 .../apache/camel/configurer/milo-browse-endpoint   |   2 +
 .../apache/camel/urifactory/milo-browse-endpoint   |   2 +
 .../camel/component/milo/browse/milo-browse.json   |  82 +++
 .../src/main/docs/milo-browse-component.adoc   |   1 -
 .../org/apache/camel/main/components.properties|   1 +
 .../component/ComponentsBuilderFactory.java|  14 +
 .../dsl/MiloBrowseComponentBuilderFactory.java | 489 +
 .../src/generated/resources/metadata.json  |  22 +
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 +
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 +
 .../builder/endpoint/StaticEndpointBuilders.java   |  45 ++
 .../dsl/MiloBrowseEndpointBuilderFactory.java  | 782 +
 .../EndpointProducerDeserializersResolver.java |   1 +
 20 files changed, 2019 insertions(+), 2 deletions(-)
 create mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/milo-browse.json
 create mode 100644 
components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseComponentConfigurer.java
 create mode 100644 
components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseEndpointConfigurer.java
 create mode 100644 
components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseEndpointUriFactory.java
 create mode 100644 
components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/configurer/milo-browse-component
 create mode 100644 
components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/configurer/milo-browse-endpoint
 create mode 100644 
components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/urifactory/milo-browse-endpoint
 create mode 100644 
components/camel-milo/src/generated/resources/org/apache/camel/component/milo/browse/milo-browse.json
 create mode 100644 
dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/MiloBrowseComponentBuilderFactory.java
 create mode 100644 
dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/MiloBrowseEndpointBuilderFactory.java


[camel] 01/02: CAMEL-17319: Regen

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 78492590ba9cc6443416866ec5d1be486e5113ca
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 16:10:12 2021 +0100

CAMEL-17319: Regen
---
 .../milo/browse/MiloBrowseComponentConfigurer.java | 196 
 .../milo/browse/MiloBrowseEndpointConfigurer.java  | 202 +
 .../milo/browse/MiloBrowseEndpointUriFactory.java  |  93 ++
 .../services/org/apache/camel/component.properties |   2 +-
 .../apache/camel/configurer/milo-browse-component  |   2 +
 .../apache/camel/configurer/milo-browse-endpoint   |   2 +
 .../apache/camel/urifactory/milo-browse-endpoint   |   2 +
 .../camel/component/milo/browse/milo-browse.json   |  82 +
 .../src/main/docs/milo-browse-component.adoc   |   1 -
 9 files changed, 580 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseComponentConfigurer.java
 
b/components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseComponentConfigurer.java
new file mode 100644
index 000..15d217e
--- /dev/null
+++ 
b/components/camel-milo/src/generated/java/org/apache/camel/component/milo/browse/MiloBrowseComponentConfigurer.java
@@ -0,0 +1,196 @@
+/* Generated by camel build tools - do NOT edit this file! */
+package org.apache.camel.component.milo.browse;
+
+import java.util.Map;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.spi.ExtendedPropertyConfigurerGetter;
+import org.apache.camel.spi.PropertyConfigurerGetter;
+import org.apache.camel.spi.ConfigurerStrategy;
+import org.apache.camel.spi.GeneratedPropertyConfigurer;
+import org.apache.camel.util.CaseInsensitiveMap;
+import org.apache.camel.support.component.PropertyConfigurerSupport;
+
+/**
+ * Generated by camel build tools - do NOT edit this file!
+ */
+@SuppressWarnings("unchecked")
+public class MiloBrowseComponentConfigurer extends PropertyConfigurerSupport 
implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
+
+private org.apache.camel.component.milo.client.MiloClientConfiguration 
getOrCreateConfiguration(MiloBrowseComponent target) {
+if (target.getConfiguration() == null) {
+target.setConfiguration(new 
org.apache.camel.component.milo.client.MiloClientConfiguration());
+}
+return target.getConfiguration();
+}
+
+@Override
+public boolean configure(CamelContext camelContext, Object obj, String 
name, Object value, boolean ignoreCase) {
+MiloBrowseComponent target = (MiloBrowseComponent) obj;
+switch (ignoreCase ? name.toLowerCase() : name) {
+case "allowedsecuritypolicies":
+case "allowedSecurityPolicies": 
getOrCreateConfiguration(target).setAllowedSecurityPolicies(property(camelContext,
 java.lang.String.class, value)); return true;
+case "applicationname":
+case "applicationName": 
getOrCreateConfiguration(target).setApplicationName(property(camelContext, 
java.lang.String.class, value)); return true;
+case "applicationuri":
+case "applicationUri": 
getOrCreateConfiguration(target).setApplicationUri(property(camelContext, 
java.lang.String.class, value)); return true;
+case "autowiredenabled":
+case "autowiredEnabled": 
target.setAutowiredEnabled(property(camelContext, boolean.class, value)); 
return true;
+case "channellifetime":
+case "channelLifetime": 
getOrCreateConfiguration(target).setChannelLifetime(property(camelContext, 
java.lang.Long.class, value)); return true;
+case "clientid":
+case "clientId": 
getOrCreateConfiguration(target).setClientId(property(camelContext, 
java.lang.String.class, value)); return true;
+case "configuration": target.setConfiguration(property(camelContext, 
org.apache.camel.component.milo.client.MiloClientConfiguration.class, value)); 
return true;
+case "discoveryendpointsuffix":
+case "discoveryEndpointSuffix": 
getOrCreateConfiguration(target).setDiscoveryEndpointSuffix(property(camelContext,
 java.lang.String.class, value)); return true;
+case "discoveryendpointuri":
+case "discoveryEndpointUri": 
getOrCreateConfiguration(target).setDiscoveryEndpointUri(property(camelContext, 
java.lang.String.class, value)); return true;
+case "keyalias":
+case "keyAlias": 
getOrCreateConfiguration(target).setKeyAlias(property(camelContext, 
java.lang.String.class, value)); return true;
+case "keypassword":
+case "keyPassword": 
getOrCreateConfiguration(target).setKeyPassword(property(camelContext, 
java.lang.String.class, value)); return true;
+case "keystorepassword":
+case "keyStorePassword": 
getOrCreateConfiguration(target).setKeyStorePassword(property(camelContext, 
java.lang.String.class, 

[camel] branch main updated: CAMEL-17319: Camel Milo: Browsing functionality (#6526)

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new acc3024  CAMEL-17319: Camel Milo: Browsing functionality (#6526)
acc3024 is described below

commit acc3024827c69a33297b4a385e9ff4cf0348b6b7
Author: Andreas Klug 
AuthorDate: Sat Dec 25 16:08:47 2021 +0100

CAMEL-17319: Camel Milo: Browsing functionality (#6526)

* camel-milo: Adding Milo browsing functionality

* CAMEL-17319: Add support for milo browsing functionality

* CAMEL-17319: Add support for milo browsing - changes based on review 
comments

* CAMEL-17319: Add support for milo browsing - changes based on review 
comments (affecting existing client component)

Co-authored-by: Klug Andreas (CI/XDM1) 
---
 components/camel-milo/pom.xml  |  16 -
 .../org/apache/camel/component/milo-browse |   2 +
 .../src/main/docs/milo-browse-component.adoc   |  93 +
 .../org/apache/camel/component/milo/NodeIds.java   |   3 +
 .../component/milo/browse/MiloBrowseComponent.java | 100 ++
 .../component/milo/browse/MiloBrowseEndpoint.java  | 247 +
 .../component/milo/browse/MiloBrowseProducer.java  | 149 
 .../milo/client/MiloClientConnection.java  |  11 +
 .../component/milo/client/MiloClientProducer.java  |   4 +-
 .../milo/client/internal/SubscriptionManager.java  | 223 +++-
 .../component/milo/AbstractMiloServerTest.java |  20 ++
 .../component/milo/browse/BrowseServerTest.java| 381 +
 .../component/milo/call/MockCamelNamespace.java|   1 -
 .../src/test/resources/log4j2.properties   |   6 +
 14 files changed, 1228 insertions(+), 28 deletions(-)

diff --git a/components/camel-milo/pom.xml b/components/camel-milo/pom.xml
index 2a7adb3..0f69b4c 100644
--- a/components/camel-milo/pom.xml
+++ b/components/camel-milo/pom.xml
@@ -80,20 +80,4 @@
 
 
 
-
-
-
-maven-surefire-plugin
-
-false
-true
-1
-
-false
-
300
-
-
-
-
-
 
diff --git 
a/components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/component/milo-browse
 
b/components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/component/milo-browse
new file mode 100644
index 000..c8d6d89
--- /dev/null
+++ 
b/components/camel-milo/src/generated/resources/META-INF/services/org/apache/camel/component/milo-browse
@@ -0,0 +1,2 @@
+# Generated by camel build tools - do NOT edit this file!
+class=org.apache.camel.component.milo.browse.MiloBrowseComponent
diff --git a/components/camel-milo/src/main/docs/milo-browse-component.adoc 
b/components/camel-milo/src/main/docs/milo-browse-component.adoc
new file mode 100644
index 000..9bf4ddc
--- /dev/null
+++ b/components/camel-milo/src/main/docs/milo-browse-component.adoc
@@ -0,0 +1,93 @@
+= OPC UA Browser Component
+:doctitle: OPC UA Browser
+:shortname: milo-browse
+:artifactid: camel-milo
+:description: Connect to OPC UA servers using the binary protocol for browsing 
the node tree.
+:since: 3.15
+:supportlevel: Preview
+:component-header: Only producer is supported
+include::{cq-version}@camel-quarkus:ROOT:partial$reference/components/milo-browse.adoc[opts=optional]
+
+*Since Camel {since}*
+
+*{component-header}*
+
+The Milo Client component provides access to OPC UA servers using the
+http://eclipse.org/milo[Eclipse Milo™] implementation.
+
+*Java 11+*: This component requires Java 11+ at runtime.
+
+Maven users will need to add the following dependency to their `pom.xml`
+for this component:
+
+[source,xml]
+
+
+org.apache.camel
+camel-milo
+x.x.x
+
+
+
+
+
+== URI format
+
+The URI syntax of the endpoint is:
+
+
+milo-browse:opc.tcp://[user:password@]host:port/path/to/service?node=RAW(nsu=urn:foo:bar;s=item-1)
+
+
+Please refer to the milo-client component for further details about the 
construction of the URI.
+
+// component-configure options: START
+
+// component-configure options: END
+
+// component options: START
+include::partial$component-configure-options.adoc[]
+include::partial$component-endpoint-options.adoc[]
+// component options: END
+
+// endpoint options: START
+
+// endpoint options: END
+
+
+=== Client
+
+The browse component shares the same base options like the Camel Milo Client 
component, e. g. concerning topics like discovery,
+security policies, the construction of node ids, etc.
+
+Please refer to the documentation of the Camel Milo Client 

[GitHub] [camel] davsclaus merged pull request #6526: CAMEL-17319: Camel Milo: Browsing functionality

2021-12-25 Thread GitBox


davsclaus merged pull request #6526:
URL: https://github.com/apache/camel/pull/6526


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-k-runtime] davsclaus commented on issue #752: Move components to Camel

2021-12-25 Thread GitBox


davsclaus commented on issue #752:
URL: 
https://github.com/apache/camel-k-runtime/issues/752#issuecomment-1001032208


   Yes we should move them over as part of Camel 3.15 release


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] 01/02: CAMEL-17382: camel-jsh-dsl - JavaShell DSL support

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit f417456dd0981c96dafe83976f73eadb506a89e9
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 16:03:30 2021 +0100

CAMEL-17382: camel-jsh-dsl - JavaShell DSL support
---
 dsl/camel-jsh-dsl/pom.xml  | 145 +
 .../services/org/apache/camel/routes-loader/jsh|   2 +
 dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc   |  12 ++
 .../main/java/org/apache/camel/dsl/jsh/Jsh.java| 135 +++
 .../org/apache/camel/dsl/jsh/JshClassLoader.java   |  52 
 .../apache/camel/dsl/jsh/JshLoaderDelegate.java|  80 
 .../camel/dsl/jsh/JshRoutesBuilderLoader.java  | 112 
 .../apache/camel/dsl/jsh/JshSourceLoaderTest.java  |  60 +
 .../src/test/resources/log4j2-test.properties  |  31 +
 .../src/test/resources/routes/MyRoute.jsh  |  20 +++
 dsl/pom.xml|   1 +
 parent/pom.xml |   5 +
 12 files changed, 655 insertions(+)

diff --git a/dsl/camel-jsh-dsl/pom.xml b/dsl/camel-jsh-dsl/pom.xml
new file mode 100644
index 000..861ddda
--- /dev/null
+++ b/dsl/camel-jsh-dsl/pom.xml
@@ -0,0 +1,145 @@
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+4.0.0
+
+
+org.apache.camel
+dsl
+3.15.0-SNAPSHOT
+
+
+camel-jsh-dsl
+jar
+Camel :: JavaShell DSL
+Camel DSL with JavaShell
+
+
+3.15.0
+Experimental
+
+**/resources/**/My*.java
+
+
+${sourcecheckExcludes},
+
+
+
+
+
+org.apache.camel
+camel-endpointdsl-support
+
+
+
+org.apache.camel
+camel-main
+test
+
+
+org.apache.camel
+camel-direct
+test
+
+
+org.apache.camel
+camel-rest
+test
+
+
+org.apache.camel
+camel-mock
+test
+
+
+org.apache.camel
+camel-core-languages
+test
+
+
+org.apache.camel
+camel-bean
+test
+
+
+org.apache.camel
+camel-log
+test
+
+
+org.apache.camel
+camel-telegram
+test
+
+
+org.apache.camel
+camel-seda
+test
+
+
+
+org.assertj
+assertj-core
+test
+
+
+org.apache.camel
+camel-test-junit5
+test
+
+
+
+org.apache.logging.log4j
+log4j-core
+test
+
+
+org.apache.logging.log4j
+log4j-slf4j-impl
+test
+
+
+org.apache.logging.log4j
+log4j-jcl
+test
+
+
+
+
+
+
+
+org.apache.camel
+camel-package-maven-plugin
+
+
+generate-spi
+
+generate-spi
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git 
a/dsl/camel-jsh-dsl/src/generated/resources/META-INF/services/org/apache/camel/routes-loader/jsh
 
b/dsl/camel-jsh-dsl/src/generated/resources/META-INF/services/org/apache/camel/routes-loader/jsh
new file mode 100644
index 000..f8cf758
--- /dev/null
+++ 
b/dsl/camel-jsh-dsl/src/generated/resources/META-INF/services/org/apache/camel/routes-loader/jsh
@@ -0,0 +1,2 @@
+# Generated by camel build tools - do NOT edit this file!
+class=org.apache.camel.dsl.jsh.JshRoutesBuilderLoader
diff --git a/dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc 
b/dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc
new file mode 100644
index 000..d71a63b
--- /dev/null
+++ b/dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc
@@ -0,0 +1,12 @@
+= JavaShell DSL Component
+//TODO there is no .json file for this doc page, so it is not updated 
automatically by UpdateReadmeMojo.
+//Header attributes written by hand.
+:doctitle: JavaShell DSL
+:artifactid: camel-jsh-dsl
+:description: Camel DSL with JavaShell
+:supportlevel: Experimental/Preview
+:since: 3.15
+//Manually maintained attributes
+:group: DSL
+
+See xref:manual:ROOT:dsl.adoc[DSL]
diff --git a/dsl/camel-jsh-dsl/src/main/java/org/apache/camel/dsl/jsh/Jsh.java 

[camel] branch main updated (32d1e6c -> 365e2c2)

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from 32d1e6c  CAMEL-17354: Deprecate a number of components that are not 
active mantained by 3rd party
 new f417456  CAMEL-17382: camel-jsh-dsl - JavaShell DSL support
 new 365e2c2  CAMEL-17382: camel-jsh-dsl - JavaShell DSL support

The 2 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:
 bom/camel-bom/pom.xml  |   5 +
 docs/components/modules/others/nav.adoc|   1 +
 docs/components/modules/others/pages/jsh-dsl.adoc  |   1 +
 dsl/camel-jsh-dsl/pom.xml  | 145 +
 .../services/org/apache/camel/routes-loader/jsh|   2 +
 dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc   |  12 ++
 .../main/java/org/apache/camel/dsl/jsh/Jsh.java| 135 +++
 .../org/apache/camel/dsl/jsh/JshClassLoader.java   |  52 
 .../apache/camel/dsl/jsh/JshLoaderDelegate.java|  80 
 .../camel/dsl/jsh/JshRoutesBuilderLoader.java  | 112 
 .../apache/camel/dsl/jsh/JshSourceLoaderTest.java  |  60 +
 .../src/test/resources/log4j2-test.properties  |  31 +
 .../src/test/resources/routes/MyRoute.jsh  |  20 +++
 dsl/pom.xml|   1 +
 parent/pom.xml |   5 +
 15 files changed, 662 insertions(+)
 create mode 12 docs/components/modules/others/pages/jsh-dsl.adoc
 create mode 100644 dsl/camel-jsh-dsl/pom.xml
 create mode 100644 
dsl/camel-jsh-dsl/src/generated/resources/META-INF/services/org/apache/camel/routes-loader/jsh
 create mode 100644 dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc
 create mode 100644 
dsl/camel-jsh-dsl/src/main/java/org/apache/camel/dsl/jsh/Jsh.java
 create mode 100644 
dsl/camel-jsh-dsl/src/main/java/org/apache/camel/dsl/jsh/JshClassLoader.java
 create mode 100644 
dsl/camel-jsh-dsl/src/main/java/org/apache/camel/dsl/jsh/JshLoaderDelegate.java
 create mode 100644 
dsl/camel-jsh-dsl/src/main/java/org/apache/camel/dsl/jsh/JshRoutesBuilderLoader.java
 create mode 100644 
dsl/camel-jsh-dsl/src/test/java/org/apache/camel/dsl/jsh/JshSourceLoaderTest.java
 create mode 100644 dsl/camel-jsh-dsl/src/test/resources/log4j2-test.properties
 create mode 100644 dsl/camel-jsh-dsl/src/test/resources/routes/MyRoute.jsh


[camel] 02/02: CAMEL-17382: camel-jsh-dsl - JavaShell DSL support

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 365e2c23da92ab50df13496e680ca524f3da9504
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 16:06:10 2021 +0100

CAMEL-17382: camel-jsh-dsl - JavaShell DSL support
---
 bom/camel-bom/pom.xml | 5 +
 docs/components/modules/others/nav.adoc   | 1 +
 docs/components/modules/others/pages/jsh-dsl.adoc | 1 +
 3 files changed, 7 insertions(+)

diff --git a/bom/camel-bom/pom.xml b/bom/camel-bom/pom.xml
index 5f323d1..79f35dc 100644
--- a/bom/camel-bom/pom.xml
+++ b/bom/camel-bom/pom.xml
@@ -1189,6 +1189,11 @@
   
   
 org.apache.camel
+camel-jsh-dsl
+${project.version}
+  
+  
+org.apache.camel
 camel-jslt
 ${project.version}
   
diff --git a/docs/components/modules/others/nav.adoc 
b/docs/components/modules/others/nav.adoc
index d4c3848..c716fe3 100644
--- a/docs/components/modules/others/nav.adoc
+++ b/docs/components/modules/others/nav.adoc
@@ -13,6 +13,7 @@
 *** xref:groovy-dsl.adoc[Groovy Dsl]
 *** xref:java-joor-dsl.adoc[Java Joor Dsl]
 *** xref:js-dsl.adoc[JavaScript Dsl]
+*** xref:jsh-dsl.adoc[JavaShell DSL]
 *** xref:java-xml-jaxb-dsl.adoc[Jaxb XML Dsl]
 *** xref:kamelet-main.adoc[Kamelet Main]
 *** xref:kotlin-dsl.adoc[Kotlin Dsl]
diff --git a/docs/components/modules/others/pages/jsh-dsl.adoc 
b/docs/components/modules/others/pages/jsh-dsl.adoc
new file mode 12
index 000..829109a
--- /dev/null
+++ b/docs/components/modules/others/pages/jsh-dsl.adoc
@@ -0,0 +1 @@
+../../../../../dsl/camel-jsh-dsl/src/main/docs/jsh-dsl.adoc
\ No newline at end of file


[GitHub] [camel-k-runtime] davsclaus commented on issue #767: Move dsl-jsh to core project

2021-12-25 Thread GitBox


davsclaus commented on issue #767:
URL: 
https://github.com/apache/camel-k-runtime/issues/767#issuecomment-1001031580


   Moved over in Camel 3.15 onwards
   https://issues.apache.org/jira/browse/CAMEL-17382


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (bb72d18 -> 32d1e6c)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from bb72d18  Regen for commit fdd5f19f3194e05108b078e25164dda39daab056
 add 4385f60  CAMEL-17354: Deprecate a number of components that are not 
active mantained by 3rd party
 add 32d1e6c  CAMEL-17354: Deprecate a number of components that are not 
active mantained by 3rd party

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/catalog/components/beanstalk.json |  2 +-
 .../org/apache/camel/catalog/components/elsql.json |  2 +-
 .../apache/camel/catalog/components/etcd-keys.json |  2 +-
 .../camel/catalog/components/etcd-stats.json   |  2 +-
 .../camel/catalog/components/etcd-watch.json   |  2 +-
 .../apache/camel/catalog/components/ganglia.json   |  2 +-
 .../org/apache/camel/catalog/components/ipfs.json  |  2 +-
 .../org/apache/camel/catalog/components/jing.json  |  2 +-
 .../org/apache/camel/catalog/components/msv.json   |  2 +-
 .../apache/camel/catalog/components/nagios.json|  2 +-
 .../org/apache/camel/catalog/components/nsq.json   |  2 +-
 .../org/apache/camel/catalog/components/sip.json   |  2 +-
 .../org/apache/camel/catalog/components/sips.json  |  2 +-
 .../apache/camel/catalog/components/soroush.json   |  2 +-
 .../apache/camel/catalog/components/yammer.json|  2 +-
 .../camel/catalog/others/leveldb-legacy.json   |  2 +-
 components/camel-beanstalk/pom.xml |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../camel/component/beanstalk/beanstalk.json   |  2 +-
 .../src/main/docs/beanstalk-component.adoc |  5 ++--
 components/camel-elsql/pom.xml |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/elsql/elsql.json|  2 +-
 .../camel-elsql/src/main/docs/elsql-component.adoc |  5 ++--
 components/camel-etcd/pom.xml  |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/etcd/etcd-keys.json |  2 +-
 .../apache/camel/component/etcd/etcd-stats.json|  2 +-
 .../apache/camel/component/etcd/etcd-watch.json|  2 +-
 .../src/main/docs/etcd-keys-component.adoc |  5 ++--
 .../src/main/docs/etcd-stats-component.adoc|  5 ++--
 .../src/main/docs/etcd-watch-component.adoc|  5 ++--
 components/camel-ganglia/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../apache/camel/component/ganglia/ganglia.json|  2 +-
 .../src/main/docs/ganglia-component.adoc   |  5 ++--
 components/camel-ipfs/pom.xml  |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/ipfs/ipfs.json  |  2 +-
 .../camel-ipfs/src/main/docs/ipfs-component.adoc   |  5 ++--
 components/camel-jing/pom.xml  |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../camel/component/validator/jing/jing.json   |  2 +-
 .../camel-jing/src/main/docs/jing-component.adoc   |  5 ++--
 components/camel-leveldb-legacy/pom.xml|  2 +-
 .../services/org/apache/camel/other.properties |  2 +-
 .../src/generated/resources/leveldb-legacy.json|  2 +-
 .../src/main/docs/leveldb-legacy.adoc  |  5 ++--
 components/camel-msv/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../apache/camel/component/validator/msv/msv.json  |  2 +-
 .../camel-msv/src/main/docs/msv-component.adoc |  5 ++--
 components/camel-nagios/pom.xml|  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/nagios/nagios.json  |  2 +-
 .../src/main/docs/nagios-component.adoc|  5 ++--
 components/camel-nsq/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/nsq/nsq.json|  2 +-
 .../camel-nsq/src/main/docs/nsq-component.adoc |  5 ++--
 components/camel-sip/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/sip/sip.json|  2 +-
 .../org/apache/camel/component/sip/sips.json   |  2 +-
 .../camel-sip/src/main/docs/sip-component.adoc |  5 ++--
 components/camel-soroush/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../component/soroushbot/component/soroush.json|  2 +-
 .../src/main/docs/soroush-component.adoc   |  5 ++--
 components/camel-tagsoup/pom.xml   |  2 +-
 .../org/apache/camel/dataformat.properties |  2 +-
 components/camel-yammer/pom.xml|  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/yammer/yammer.json  | 

[camel-spring-boot] branch main updated: Regen

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 5f5a468  Regen
5f5a468 is described below

commit 5f5a468929b874b82de7bab74e26306ca49de738
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 15:26:03 2021 +0100

Regen
---
 .../camel/springboot/catalog/components/azure-servicebus.json  |  2 +-
 .../apache/camel/springboot/catalog/components/beanstalk.json  |  2 +-
 .../org/apache/camel/springboot/catalog/components/elsql.json  |  2 +-
 .../apache/camel/springboot/catalog/components/etcd-keys.json  |  2 +-
 .../apache/camel/springboot/catalog/components/etcd-stats.json |  2 +-
 .../apache/camel/springboot/catalog/components/etcd-watch.json |  2 +-
 .../apache/camel/springboot/catalog/components/ganglia.json|  2 +-
 .../org/apache/camel/springboot/catalog/components/ipfs.json   |  2 +-
 .../org/apache/camel/springboot/catalog/components/jing.json   |  2 +-
 .../org/apache/camel/springboot/catalog/components/msv.json|  2 +-
 .../org/apache/camel/springboot/catalog/components/nagios.json |  2 +-
 .../org/apache/camel/springboot/catalog/components/nsq.json|  2 +-
 .../org/apache/camel/springboot/catalog/components/sip.json|  2 +-
 .../org/apache/camel/springboot/catalog/components/sips.json   |  2 +-
 .../apache/camel/springboot/catalog/components/soroush.json|  2 +-
 .../org/apache/camel/springboot/catalog/components/yammer.json |  2 +-
 .../apache/camel/springboot/catalog/others/csimple-joor.json   |  2 +-
 .../apache/camel/springboot/catalog/others/leveldb-legacy.json |  2 +-
 tooling/camel-spring-boot-dependencies/pom.xml | 10 +-
 19 files changed, 23 insertions(+), 23 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-servicebus.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-servicebus.json
index 00f0b16..451c0b1 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-servicebus.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/azure-servicebus.json
@@ -14,7 +14,7 @@
 "version": "3.15.0-SNAPSHOT",
 "scheme": "azure-servicebus",
 "extendsScheme": "",
-"syntax": "azure-servicebus:queueNameOrTopicName",
+"syntax": "azure-servicebus:topicOrQueueName",
 "async": false,
 "api": false,
 "consumerOnly": false,
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/beanstalk.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/beanstalk.json
index 5a034ef..57c8db1 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/beanstalk.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/beanstalk.json
@@ -4,7 +4,7 @@
 "name": "beanstalk",
 "title": "Beanstalk",
 "description": "Retrieve and post-process Beanstalk jobs.",
-"deprecated": false,
+"deprecated": true,
 "firstVersion": "2.15.0",
 "label": "messaging",
 "javaType": "org.apache.camel.component.beanstalk.BeanstalkComponent",
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/elsql.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/elsql.json
index 4624d62..52d80a4 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/elsql.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/elsql.json
@@ -4,7 +4,7 @@
 "name": "elsql",
 "title": "ElSQL",
 "description": "Use ElSql to define SQL queries. Extends the SQL 
Component.",
-"deprecated": false,
+"deprecated": true,
 "firstVersion": "2.16.0",
 "label": "database,sql",
 "javaType": "org.apache.camel.component.elsql.ElsqlComponent",
diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/etcd-keys.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/etcd-keys.json
index b2de8e2..8a73aff 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/etcd-keys.json
+++ 

[GitHub] [camel-k-runtime] davsclaus opened a new issue #767: Move dsl-jsh to core project

2021-12-25 Thread GitBox


davsclaus opened a new issue #767:
URL: https://github.com/apache/camel-k-runtime/issues/767


   We can port over the javashell DSL to the core camel project so we have all 
of them together. This DSL will still be experimental, but since its standard 
Java Shell then it can have more potential than the joor java library we use 
for Java DSL


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [camel-k-runtime] davsclaus opened a new issue #766: Remove camel-k-kamelet-reify

2021-12-25 Thread GitBox


davsclaus opened a new issue #766:
URL: https://github.com/apache/camel-k-runtime/issues/766


   Its removed from Camel 3.15 onwards


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] 02/02: CAMEL-17354: Deprecate a number of components that are not active mantained by 3rd party

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 32d1e6c29f75b21c30c3402080a54617b78d8939
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 15:11:23 2021 +0100

CAMEL-17354: Deprecate a number of components that are not active mantained 
by 3rd party
---
 .../apache/camel/catalog/components/beanstalk.json |  2 +-
 .../org/apache/camel/catalog/components/elsql.json |  2 +-
 .../apache/camel/catalog/components/etcd-keys.json |  2 +-
 .../camel/catalog/components/etcd-stats.json   |  2 +-
 .../camel/catalog/components/etcd-watch.json   |  2 +-
 .../apache/camel/catalog/components/ganglia.json   |  2 +-
 .../org/apache/camel/catalog/components/ipfs.json  |  2 +-
 .../org/apache/camel/catalog/components/jing.json  |  2 +-
 .../org/apache/camel/catalog/components/msv.json   |  2 +-
 .../apache/camel/catalog/components/nagios.json|  2 +-
 .../org/apache/camel/catalog/components/nsq.json   |  2 +-
 .../org/apache/camel/catalog/components/sip.json   |  2 +-
 .../org/apache/camel/catalog/components/sips.json  |  2 +-
 .../apache/camel/catalog/components/soroush.json   |  2 +-
 .../apache/camel/catalog/components/yammer.json|  2 +-
 .../camel/catalog/others/leveldb-legacy.json   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../camel/component/beanstalk/beanstalk.json   |  2 +-
 .../src/main/docs/beanstalk-component.adoc |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/elsql/elsql.json|  2 +-
 .../camel-elsql/src/main/docs/elsql-component.adoc |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/etcd/etcd-keys.json |  2 +-
 .../apache/camel/component/etcd/etcd-stats.json|  2 +-
 .../apache/camel/component/etcd/etcd-watch.json|  2 +-
 .../src/main/docs/etcd-keys-component.adoc |  5 ++--
 .../src/main/docs/etcd-stats-component.adoc|  5 ++--
 .../src/main/docs/etcd-watch-component.adoc|  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../apache/camel/component/ganglia/ganglia.json|  2 +-
 .../src/main/docs/ganglia-component.adoc   |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/ipfs/ipfs.json  |  2 +-
 .../camel-ipfs/src/main/docs/ipfs-component.adoc   |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../camel/component/validator/jing/jing.json   |  2 +-
 .../camel-jing/src/main/docs/jing-component.adoc   |  5 ++--
 .../services/org/apache/camel/other.properties |  2 +-
 .../src/generated/resources/leveldb-legacy.json|  2 +-
 .../src/main/docs/leveldb-legacy.adoc  |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../apache/camel/component/validator/msv/msv.json  |  2 +-
 .../camel-msv/src/main/docs/msv-component.adoc |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/nagios/nagios.json  |  2 +-
 .../src/main/docs/nagios-component.adoc|  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/nsq/nsq.json|  2 +-
 .../camel-nsq/src/main/docs/nsq-component.adoc |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/sip/sip.json|  2 +-
 .../org/apache/camel/component/sip/sips.json   |  2 +-
 .../camel-sip/src/main/docs/sip-component.adoc |  5 ++--
 .../services/org/apache/camel/component.properties |  2 +-
 .../component/soroushbot/component/soroush.json|  2 +-
 .../src/main/docs/soroush-component.adoc   |  5 ++--
 .../org/apache/camel/dataformat.properties |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/yammer/yammer.json  |  2 +-
 .../src/main/docs/yammer-component.adoc|  5 ++--
 .../component/ComponentsBuilderFactory.java| 15 +++
 .../dsl/BeanstalkComponentBuilderFactory.java  |  1 +
 .../dsl/ElsqlComponentBuilderFactory.java  |  1 +
 .../dsl/EtcdKeysComponentBuilderFactory.java   |  1 +
 .../dsl/EtcdStatsComponentBuilderFactory.java  |  1 +
 .../dsl/EtcdWatchComponentBuilderFactory.java  |  1 +
 .../dsl/GangliaComponentBuilderFactory.java|  1 +
 .../component/dsl/IpfsComponentBuilderFactory.java |  1 +
 .../component/dsl/JingComponentBuilderFactory.java |  1 +
 .../component/dsl/MsvComponentBuilderFactory.java  |  1 +
 .../dsl/NagiosComponentBuilderFactory.java |  1 +
 .../component/dsl/NsqComponentBuilderFactory.java  |  1 +
 .../component/dsl/SipComponentBuilderFactory.java  |  1 +
 .../component/dsl/SipsComponentBuilderFactory.java |  1 +
 .../dsl/SoroushComponentBuilderFactory.java|  1 +
 

[camel] 01/02: CAMEL-17354: Deprecate a number of components that are not active mantained by 3rd party

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 4385f60e52f4b2fb69eca4e392664133993255f3
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 14:50:31 2021 +0100

CAMEL-17354: Deprecate a number of components that are not active mantained 
by 3rd party
---
 components/camel-beanstalk/pom.xml  | 2 +-
 components/camel-elsql/pom.xml  | 2 +-
 components/camel-etcd/pom.xml   | 2 +-
 components/camel-ganglia/pom.xml| 2 +-
 components/camel-ipfs/pom.xml   | 2 +-
 components/camel-jing/pom.xml   | 2 +-
 components/camel-leveldb-legacy/pom.xml | 2 +-
 components/camel-msv/pom.xml| 2 +-
 components/camel-nagios/pom.xml | 2 +-
 components/camel-nsq/pom.xml| 2 +-
 components/camel-sip/pom.xml| 2 +-
 components/camel-soroush/pom.xml| 2 +-
 components/camel-tagsoup/pom.xml| 2 +-
 components/camel-yammer/pom.xml | 2 +-
 14 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/components/camel-beanstalk/pom.xml 
b/components/camel-beanstalk/pom.xml
index 50522a2..7e585c6 100644
--- a/components/camel-beanstalk/pom.xml
+++ b/components/camel-beanstalk/pom.xml
@@ -28,7 +28,7 @@
 
 camel-beanstalk
 jar
-Camel :: Beanstalk
+Camel :: Beanstalk (deprecated)
 Camel Beanstalk component
 
 
diff --git a/components/camel-elsql/pom.xml b/components/camel-elsql/pom.xml
index 4a692b2..463875a 100644
--- a/components/camel-elsql/pom.xml
+++ b/components/camel-elsql/pom.xml
@@ -28,7 +28,7 @@
 
 camel-elsql
 jar
-Camel :: ElSql
+Camel :: ElSql (deprecated)
 Camel ElSql support
 
 
diff --git a/components/camel-etcd/pom.xml b/components/camel-etcd/pom.xml
index 32f9bcf..967ea3d 100644
--- a/components/camel-etcd/pom.xml
+++ b/components/camel-etcd/pom.xml
@@ -29,7 +29,7 @@
 
 camel-etcd
 jar
-Camel :: Etcd
+Camel :: Etcd (deprecated)
 Camel Etcd support
 
 
diff --git a/components/camel-ganglia/pom.xml b/components/camel-ganglia/pom.xml
index 332dfac..6614222 100644
--- a/components/camel-ganglia/pom.xml
+++ b/components/camel-ganglia/pom.xml
@@ -28,7 +28,7 @@
 
 camel-ganglia
 jar
-Camel :: Ganglia
+Camel :: Ganglia (deprecated)
 Camel Ganglia support
 
 
diff --git a/components/camel-ipfs/pom.xml b/components/camel-ipfs/pom.xml
index f202f07..6ed40aa 100644
--- a/components/camel-ipfs/pom.xml
+++ b/components/camel-ipfs/pom.xml
@@ -29,7 +29,7 @@
 camel-ipfs
 jar
 
-Camel :: IPFS
+Camel :: IPFS (deprecated)
 Camel IPFS support
 
 
diff --git a/components/camel-jing/pom.xml b/components/camel-jing/pom.xml
index 3e60636..aced670 100644
--- a/components/camel-jing/pom.xml
+++ b/components/camel-jing/pom.xml
@@ -28,7 +28,7 @@
 
 camel-jing
 jar
-Camel :: Jing
+Camel :: Jing (deprecated)
 Camel Jing support
 
 
diff --git a/components/camel-leveldb-legacy/pom.xml 
b/components/camel-leveldb-legacy/pom.xml
index 47f2d9a..fa44e70 100644
--- a/components/camel-leveldb-legacy/pom.xml
+++ b/components/camel-leveldb-legacy/pom.xml
@@ -28,7 +28,7 @@
 
 camel-leveldb-legacy
 jar
-Camel :: LevelDB Legacy
+Camel :: LevelDB Legacy (deprecated)
 Using LevelDB as persistent EIP store
 
 
diff --git a/components/camel-msv/pom.xml b/components/camel-msv/pom.xml
index 87ab5b6..e53a409 100644
--- a/components/camel-msv/pom.xml
+++ b/components/camel-msv/pom.xml
@@ -28,7 +28,7 @@
 
 camel-msv
 jar
-Camel :: MSV
+Camel :: MSV (deprecated)
 Camel MSV support
 
 
diff --git a/components/camel-nagios/pom.xml b/components/camel-nagios/pom.xml
index aa99a2a..1120c86 100644
--- a/components/camel-nagios/pom.xml
+++ b/components/camel-nagios/pom.xml
@@ -28,7 +28,7 @@
 
 camel-nagios
 jar
-Camel :: Nagios
+Camel :: Nagios (deprecated)
 Camel Nagios support
 
 
diff --git a/components/camel-nsq/pom.xml b/components/camel-nsq/pom.xml
index be560f7..a86c7fe 100644
--- a/components/camel-nsq/pom.xml
+++ b/components/camel-nsq/pom.xml
@@ -27,7 +27,7 @@
 
 camel-nsq
 jar
-Camel :: NSQ
+Camel :: NSQ (deprecated)
 
 
 
diff --git a/components/camel-sip/pom.xml b/components/camel-sip/pom.xml
index 03edb4d..794ff9a 100644
--- a/components/camel-sip/pom.xml
+++ b/components/camel-sip/pom.xml
@@ -29,7 +29,7 @@
 
 camel-sip
 jar
-Camel :: SIP
+Camel :: SIP (deprecated)
 Camel SIP protocol based communication component
 
 
diff --git a/components/camel-soroush/pom.xml b/components/camel-soroush/pom.xml
index 7a17ad1..bd272c9 100644
--- a/components/camel-soroush/pom.xml
+++ b/components/camel-soroush/pom.xml
@@ -25,7 +25,7 @@
 
 
 camel-soroush
-Camel :: Soroush
+Camel :: Soroush (deprecated)
 Camel Soroush Support
 
 
diff --git 

[camel] branch main updated (bb72d18 -> 32d1e6c)

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from bb72d18  Regen for commit fdd5f19f3194e05108b078e25164dda39daab056
 new 4385f60  CAMEL-17354: Deprecate a number of components that are not 
active mantained by 3rd party
 new 32d1e6c  CAMEL-17354: Deprecate a number of components that are not 
active mantained by 3rd party

The 2 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:
 .../apache/camel/catalog/components/beanstalk.json |  2 +-
 .../org/apache/camel/catalog/components/elsql.json |  2 +-
 .../apache/camel/catalog/components/etcd-keys.json |  2 +-
 .../camel/catalog/components/etcd-stats.json   |  2 +-
 .../camel/catalog/components/etcd-watch.json   |  2 +-
 .../apache/camel/catalog/components/ganglia.json   |  2 +-
 .../org/apache/camel/catalog/components/ipfs.json  |  2 +-
 .../org/apache/camel/catalog/components/jing.json  |  2 +-
 .../org/apache/camel/catalog/components/msv.json   |  2 +-
 .../apache/camel/catalog/components/nagios.json|  2 +-
 .../org/apache/camel/catalog/components/nsq.json   |  2 +-
 .../org/apache/camel/catalog/components/sip.json   |  2 +-
 .../org/apache/camel/catalog/components/sips.json  |  2 +-
 .../apache/camel/catalog/components/soroush.json   |  2 +-
 .../apache/camel/catalog/components/yammer.json|  2 +-
 .../camel/catalog/others/leveldb-legacy.json   |  2 +-
 components/camel-beanstalk/pom.xml |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../camel/component/beanstalk/beanstalk.json   |  2 +-
 .../src/main/docs/beanstalk-component.adoc |  5 ++--
 components/camel-elsql/pom.xml |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/elsql/elsql.json|  2 +-
 .../camel-elsql/src/main/docs/elsql-component.adoc |  5 ++--
 components/camel-etcd/pom.xml  |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/etcd/etcd-keys.json |  2 +-
 .../apache/camel/component/etcd/etcd-stats.json|  2 +-
 .../apache/camel/component/etcd/etcd-watch.json|  2 +-
 .../src/main/docs/etcd-keys-component.adoc |  5 ++--
 .../src/main/docs/etcd-stats-component.adoc|  5 ++--
 .../src/main/docs/etcd-watch-component.adoc|  5 ++--
 components/camel-ganglia/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../apache/camel/component/ganglia/ganglia.json|  2 +-
 .../src/main/docs/ganglia-component.adoc   |  5 ++--
 components/camel-ipfs/pom.xml  |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/ipfs/ipfs.json  |  2 +-
 .../camel-ipfs/src/main/docs/ipfs-component.adoc   |  5 ++--
 components/camel-jing/pom.xml  |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../camel/component/validator/jing/jing.json   |  2 +-
 .../camel-jing/src/main/docs/jing-component.adoc   |  5 ++--
 components/camel-leveldb-legacy/pom.xml|  2 +-
 .../services/org/apache/camel/other.properties |  2 +-
 .../src/generated/resources/leveldb-legacy.json|  2 +-
 .../src/main/docs/leveldb-legacy.adoc  |  5 ++--
 components/camel-msv/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../apache/camel/component/validator/msv/msv.json  |  2 +-
 .../camel-msv/src/main/docs/msv-component.adoc |  5 ++--
 components/camel-nagios/pom.xml|  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/nagios/nagios.json  |  2 +-
 .../src/main/docs/nagios-component.adoc|  5 ++--
 components/camel-nsq/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/nsq/nsq.json|  2 +-
 .../camel-nsq/src/main/docs/nsq-component.adoc |  5 ++--
 components/camel-sip/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../org/apache/camel/component/sip/sip.json|  2 +-
 .../org/apache/camel/component/sip/sips.json   |  2 +-
 .../camel-sip/src/main/docs/sip-component.adoc |  5 ++--
 components/camel-soroush/pom.xml   |  2 +-
 .../services/org/apache/camel/component.properties |  2 +-
 .../component/soroushbot/component/soroush.json|  2 +-
 .../src/main/docs/soroush-component.adoc   |  5 ++--
 components/camel-tagsoup/pom.xml   |  2 +-
 .../org/apache/camel/dataformat.properties 

[camel] branch regen_bot updated (b1398a4 -> bb72d18)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit b1398a4  Regen for commit fdd5f19f3194e05108b078e25164dda39daab056
 add bb72d18  Regen for commit fdd5f19f3194e05108b078e25164dda39daab056

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   (b1398a4)
\
 N -- N -- N   refs/heads/regen_bot (bb72d18)

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.

No new revisions were added by this update.

Summary of changes:


[camel] branch main updated: Regen for commit fdd5f19f3194e05108b078e25164dda39daab056

2021-12-25 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new bb72d18  Regen for commit fdd5f19f3194e05108b078e25164dda39daab056
bb72d18 is described below

commit bb72d180b61bd5063b175c089665f29badddab15
Author: davsclaus 
AuthorDate: Sat Dec 25 13:07:56 2021 +

Regen for commit fdd5f19f3194e05108b078e25164dda39daab056

Signed-off-by: GitHub 
---
 bom/camel-bom/pom.xml | 5 +
 1 file changed, 5 insertions(+)

diff --git a/bom/camel-bom/pom.xml b/bom/camel-bom/pom.xml
index 3fa8cfd..5f323d1 100644
--- a/bom/camel-bom/pom.xml
+++ b/bom/camel-bom/pom.xml
@@ -704,6 +704,11 @@
   
   
 org.apache.camel
+camel-endpointdsl-support
+${project.version}
+  
+  
+org.apache.camel
 camel-etcd
 ${project.version}
   


[GitHub] [camel] oscerd merged pull request #6593: Generated sources regen

2021-12-25 Thread GitBox


oscerd merged pull request #6593:
URL: https://github.com/apache/camel/pull/6593


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch regen_bot updated (4be50d7 -> b1398a4)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


omit 4be50d7  Regen for commit 7d45718440350b46c5f90ac97fd47e433585733c
 add fdd5f19  groovy/js/kotlin DSL is experimental support level
 add b1398a4  Regen for commit fdd5f19f3194e05108b078e25164dda39daab056

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   (4be50d7)
\
 N -- N -- N   refs/heads/regen_bot (b1398a4)

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.

No new revisions were added by this update.

Summary of changes:
 dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml | 1 +
 dsl/camel-js-dsl/pom.xml  | 1 +
 dsl/camel-kotlin-dsl/pom.xml  | 1 +
 3 files changed, 3 insertions(+)


[camel] branch regen_bot updated (9d44c96 -> 4be50d7)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from 9d44c96  Drop Java 8
 add 1b9ef7e  Remove camel-kamelet-reify - no longer in use.
 add 0c68a04  Remove camel-kamelet-reify - no longer in use.
 add 45fcd16  Remove camel-kamelet-reify - no longer in use.
 add b3d8cbc  CAMEL-17380: camel-yaml-dsl - Do not depend on endpointdsl
 add 7d45718  Drop Java 8
 add 4be50d7  Regen for commit 7d45718440350b46c5f90ac97fd47e433585733c

No new revisions were added by this update.

Summary of changes:
 bom/camel-bom/pom.xml  |  10 +-
 catalog/camel-allcomponents/pom.xml|   4 -
 .../org/apache/camel/catalog/components.properties |   1 -
 .../camel/catalog/components/kamelet-reify.json|  36 ---
 components/camel-kamelet-reify/pom.xml |  85 --
 .../KameletReifyComponentConfigurer.java   |  61 
 .../KameletReifyEndpointConfigurer.java|  67 -
 .../KameletReifyEndpointUriFactory.java|  65 
 .../services/org/apache/camel/component.properties |   7 -
 .../org/apache/camel/component/kamelet-reify   |   2 -
 .../camel/configurer/kamelet-reify-component   |   2 -
 .../apache/camel/configurer/kamelet-reify-endpoint |   2 -
 .../apache/camel/urifactory/kamelet-reify-endpoint |   2 -
 .../component/kameletreify/kamelet-reify.json  |  36 ---
 .../src/main/docs/kamelet-reify-component.adoc |  44 ---
 .../camel/component/kameletreify/KameletReify.java |  45 ---
 .../kameletreify/KameletReifyComponent.java|  91 --
 .../kameletreify/KameletReifyEndpoint.java | 162 --
 .../component/kameletreify/KameletReifyIT.java | 114 ---
 .../src/test/resources/log4j2-test.xml |  42 ---
 components/pom.xml |   1 -
 .../org/apache/camel/main/components.properties|   1 -
 .../modules/ROOT/examples/json/kamelet-reify.json  |   1 -
 docs/components/modules/ROOT/nav.adoc  |   1 -
 .../ROOT/pages/kamelet-reify-component.adoc|   1 -
 .../ROOT/pages/camel-3x-upgrade-guide-3_15.adoc|   4 +
 .../component/ComponentsBuilderFactory.java|  14 -
 .../dsl/KameletReifyComponentBuilderFactory.java   | 145 -
 .../src/generated/resources/metadata.json  |  22 --
 dsl/camel-dsl-support/pom.xml  |   6 +-
 .../pom.xml|  12 +-
 .../support/EndpointRouteBuilderLoaderSupport.java |   6 +-
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 -
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 -
 .../builder/endpoint/StaticEndpointBuilders.java   |  45 ---
 .../dsl/KameletReifyEndpointBuilderFactory.java| 326 -
 dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml  |  10 +-
 .../dsl/groovy/GroovyRoutesBuilderLoader.java  |   2 +-
 dsl/camel-java-joor-dsl/pom.xml|   8 -
 dsl/camel-js-dsl/pom.xml   |  10 +-
 .../dsl/js/JavaScriptRoutesBuilderLoader.java  |   2 +-
 dsl/camel-kotlin-dsl/pom.xml   |  10 +-
 .../org/apache/camel/dsl/kotlin/KotlinConstants.kt |   2 +-
 .../camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt  |   5 +-
 dsl/camel-xml-io-dsl/pom.xml   |   8 -
 dsl/camel-xml-jaxb-dsl/pom.xml |   8 -
 .../EndpointConsumerDeserializersResolver.java |   1 -
 .../EndpointProducerDeserializersResolver.java |   1 -
 dsl/pom.xml|   1 +
 parent/pom.xml |  10 +-
 50 files changed, 33 insertions(+), 1510 deletions(-)
 delete mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/kamelet-reify.json
 delete mode 100644 components/camel-kamelet-reify/pom.xml
 delete mode 100644 
components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyComponentConfigurer.java
 delete mode 100644 
components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyEndpointConfigurer.java
 delete mode 100644 
components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyEndpointUriFactory.java
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/component.properties
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/component/kamelet-reify
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/configurer/kamelet-reify-component
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/configurer/kamelet-reify-endpoint
 delete mode 100644 

[GitHub] [camel] github-actions[bot] opened a new pull request #6593: Generated sources regen

2021-12-25 Thread GitBox


github-actions[bot] opened a new pull request #6593:
URL: https://github.com/apache/camel/pull/6593


   Regen bot :robot: found some uncommited changes after running build on 
:camel: main.
   Please do not delete `regen_bot` branch after merge/rebase.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[camel] branch main updated: groovy/js/kotlin DSL is experimental support level

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new fdd5f19  groovy/js/kotlin DSL is experimental support level
fdd5f19 is described below

commit fdd5f19f3194e05108b078e25164dda39daab056
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 13:17:00 2021 +0100

groovy/js/kotlin DSL is experimental support level
---
 dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml | 1 +
 dsl/camel-js-dsl/pom.xml  | 1 +
 dsl/camel-kotlin-dsl/pom.xml  | 1 +
 3 files changed, 3 insertions(+)

diff --git a/dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml 
b/dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml
index 7c7339a..e4fe230 100644
--- a/dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml
+++ b/dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml
@@ -35,6 +35,7 @@
 
 
 3.9.0
+Experimental
 
 **/resources/**/My*.java
 
diff --git a/dsl/camel-js-dsl/pom.xml b/dsl/camel-js-dsl/pom.xml
index 0516800..fca4995 100644
--- a/dsl/camel-js-dsl/pom.xml
+++ b/dsl/camel-js-dsl/pom.xml
@@ -35,6 +35,7 @@
 
 
 3.9.0
+Experimental
 
 **/resources/**/My*.java
 
diff --git a/dsl/camel-kotlin-dsl/pom.xml b/dsl/camel-kotlin-dsl/pom.xml
index a75992f..63b5bd7 100644
--- a/dsl/camel-kotlin-dsl/pom.xml
+++ b/dsl/camel-kotlin-dsl/pom.xml
@@ -35,6 +35,7 @@
 
 
 3.9.0
+Experimental
 
 **/resources/**/My*.java
 


[camel] branch main updated (45fcd16 -> 7d45718)

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from 45fcd16  Remove camel-kamelet-reify - no longer in use.
 new b3d8cbc  CAMEL-17380: camel-yaml-dsl - Do not depend on endpointdsl
 new 7d45718  Drop Java 8

The 2 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:
 .../component/ComponentsBuilderFactory.java|  14 -
 .../dsl/KameletReifyComponentBuilderFactory.java   | 145 -
 .../src/generated/resources/metadata.json  |  22 --
 dsl/camel-dsl-support/pom.xml  |   6 +-
 .../pom.xml|  12 +-
 .../support/EndpointRouteBuilderLoaderSupport.java |   6 +-
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 -
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 -
 .../builder/endpoint/StaticEndpointBuilders.java   |  45 ---
 .../dsl/KameletReifyEndpointBuilderFactory.java| 326 -
 dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml  |  10 +-
 .../dsl/groovy/GroovyRoutesBuilderLoader.java  |   2 +-
 dsl/camel-java-joor-dsl/pom.xml|   8 -
 dsl/camel-js-dsl/pom.xml   |  10 +-
 .../dsl/js/JavaScriptRoutesBuilderLoader.java  |   2 +-
 dsl/camel-kotlin-dsl/pom.xml   |  10 +-
 .../org/apache/camel/dsl/kotlin/KotlinConstants.kt |   2 +-
 .../camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt  |   5 +-
 dsl/camel-xml-io-dsl/pom.xml   |   8 -
 dsl/camel-xml-jaxb-dsl/pom.xml |   8 -
 dsl/pom.xml|   1 +
 parent/pom.xml |   5 +
 22 files changed, 24 insertions(+), 625 deletions(-)
 delete mode 100644 
dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/KameletReifyComponentBuilderFactory.java
 copy dsl/{camel-dsl-support => camel-endpointdsl-support}/pom.xml (85%)
 rename dsl/{camel-dsl-support/src/main/java/org/apache/camel/dsl => 
camel-endpointdsl-support/src/main/java/org/apache/camel/endpointdsl}/support/EndpointRouteBuilderLoaderSupport.java
 (89%)
 delete mode 100644 
dsl/camel-endpointdsl/src/generated/java/org/apache/camel/builder/endpoint/dsl/KameletReifyEndpointBuilderFactory.java


[camel] 01/02: CAMEL-17380: camel-yaml-dsl - Do not depend on endpointdsl

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit b3d8cbc318ea8d62caf51adf3d5a81b8f674fbde
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 13:00:56 2021 +0100

CAMEL-17380: camel-yaml-dsl - Do not depend on endpointdsl
---
 .../component/ComponentsBuilderFactory.java|  14 -
 .../dsl/KameletReifyComponentBuilderFactory.java   | 145 -
 .../src/generated/resources/metadata.json  |  22 --
 dsl/camel-dsl-support/pom.xml  |   6 +-
 .../pom.xml|  12 +-
 .../support/EndpointRouteBuilderLoaderSupport.java |   6 +-
 .../builder/endpoint/EndpointBuilderFactory.java   |   1 -
 .../camel/builder/endpoint/EndpointBuilders.java   |   1 -
 .../builder/endpoint/StaticEndpointBuilders.java   |  45 ---
 .../dsl/KameletReifyEndpointBuilderFactory.java| 326 -
 dsl/camel-groovy-dsl/camel-groovy-dsl/pom.xml  |  10 +-
 .../dsl/groovy/GroovyRoutesBuilderLoader.java  |   2 +-
 dsl/camel-java-joor-dsl/pom.xml|   8 -
 dsl/camel-js-dsl/pom.xml   |  10 +-
 .../dsl/js/JavaScriptRoutesBuilderLoader.java  |   2 +-
 dsl/camel-kotlin-dsl/pom.xml   |  10 +-
 .../camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt  |   4 +-
 dsl/camel-xml-io-dsl/pom.xml   |   8 -
 dsl/camel-xml-jaxb-dsl/pom.xml |   8 -
 dsl/pom.xml|   1 +
 parent/pom.xml |   5 +
 21 files changed, 22 insertions(+), 624 deletions(-)

diff --git 
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
 
b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
index 451b939..2684f42 100644
--- 
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
+++ 
b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/ComponentsBuilderFactory.java
@@ -2614,20 +2614,6 @@ public interface ComponentsBuilderFactory {
 return 
org.apache.camel.builder.component.dsl.KameletComponentBuilderFactory.kamelet();
 }
 /**
- * Kamelet Reify (camel-kamelet-reify)
- * To call Kamelets (indirectly)
- * 
- * Category: core
- * Since: 3.6
- * Maven coordinates: org.apache.camel:camel-kamelet-reify
- * 
- * @return the dsl builder
- */
-@Deprecated
-static 
org.apache.camel.builder.component.dsl.KameletReifyComponentBuilderFactory.KameletReifyComponentBuilder
 kameletReify() {
-return 
org.apache.camel.builder.component.dsl.KameletReifyComponentBuilderFactory.kameletReify();
-}
-/**
  * Kubernetes ConfigMap (camel-kubernetes)
  * Perform operations on Kubernetes ConfigMaps and get notified on
  * ConfigMaps changes.
diff --git 
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/KameletReifyComponentBuilderFactory.java
 
b/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/KameletReifyComponentBuilderFactory.java
deleted file mode 100644
index f41efd3..000
--- 
a/dsl/camel-componentdsl/src/generated/java/org/apache/camel/builder/component/dsl/KameletReifyComponentBuilderFactory.java
+++ /dev/null
@@ -1,145 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *  http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.camel.builder.component.dsl;
-
-import javax.annotation.Generated;
-import org.apache.camel.Component;
-import org.apache.camel.builder.component.AbstractComponentBuilder;
-import org.apache.camel.builder.component.ComponentBuilder;
-import org.apache.camel.component.kameletreify.KameletReifyComponent;
-
-/**
- * To call Kamelets (indirectly)
- * 
- * Generated by camel-package-maven-plugin - do not edit this file!
- */
-@Generated("org.apache.camel.maven.packaging.ComponentDslMojo")
-public interface KameletReifyComponentBuilderFactory {
-
-/**
- * Kamelet Reify (camel-kamelet-reify)
- * To call Kamelets (indirectly)
-  

[camel] 02/02: Drop Java 8

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 7d45718440350b46c5f90ac97fd47e433585733c
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 13:09:36 2021 +0100

Drop Java 8
---
 .../src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinConstants.kt  | 2 +-
 .../kotlin/org/apache/camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinConstants.kt
 
b/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinConstants.kt
index 73567b6..6bfb7c7 100644
--- 
a/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinConstants.kt
+++ 
b/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinConstants.kt
@@ -17,4 +17,4 @@
 package org.apache.camel.dsl.kotlin
 
 const val EXTENSION = "kts"
-const val JVM_TARGET = "1.8"
\ No newline at end of file
+const val JVM_TARGET = "11"
\ No newline at end of file
diff --git 
a/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt
 
b/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt
index d789d8d..db92705 100644
--- 
a/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt
+++ 
b/dsl/camel-kotlin-dsl/src/main/kotlin/org/apache/camel/dsl/kotlin/KotlinRoutesBuilderLoader.kt
@@ -52,6 +52,7 @@ class KotlinRoutesBuilderLoader : 
org.apache.camel.endpointdsl.support.EndpointR
 // ensure evaluation errors propagation
 when(val rv = result.valueOrNull()?.returnValue) {
 is ResultValue.Error -> throw RuntimeCamelException(rv.error)
+else -> {} // result is okay
 }
 
 if (result.reports.isNotEmpty()) {


[camel] 03/03: Remove camel-kamelet-reify - no longer in use.

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 45fcd1613ca728c5358136a07ef9e1b4657b6555
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 12:34:06 2021 +0100

Remove camel-kamelet-reify - no longer in use.
---
 bom/camel-bom/pom.xml  |  5 ---
 catalog/camel-allcomponents/pom.xml|  4 ---
 .../org/apache/camel/catalog/components.properties |  1 -
 .../camel/catalog/components/kamelet-reify.json| 36 --
 .../org/apache/camel/main/components.properties|  1 -
 .../modules/ROOT/examples/json/kamelet-reify.json  |  1 -
 docs/components/modules/ROOT/nav.adoc  |  1 -
 .../ROOT/pages/kamelet-reify-component.adoc|  1 -
 .../ROOT/pages/camel-3x-upgrade-guide-3_15.adoc|  4 +++
 .../EndpointConsumerDeserializersResolver.java |  1 -
 .../EndpointProducerDeserializersResolver.java |  1 -
 11 files changed, 4 insertions(+), 52 deletions(-)

diff --git a/bom/camel-bom/pom.xml b/bom/camel-bom/pom.xml
index e1ed075..3fa8cfd 100644
--- a/bom/camel-bom/pom.xml
+++ b/bom/camel-bom/pom.xml
@@ -1244,11 +1244,6 @@
   
   
 org.apache.camel
-camel-kamelet-reify
-${project.version}
-  
-  
-org.apache.camel
 camel-kotlin-dsl
 ${project.version}
   
diff --git a/catalog/camel-allcomponents/pom.xml 
b/catalog/camel-allcomponents/pom.xml
index 6579acc..7688890 100644
--- a/catalog/camel-allcomponents/pom.xml
+++ b/catalog/camel-allcomponents/pom.xml
@@ -839,10 +839,6 @@


org.apache.camel
-   camel-kamelet-reify
-   
-   
-   org.apache.camel
camel-kamelet


diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
index e87efd1..2cc22bc 100644
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
+++ 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components.properties
@@ -192,7 +192,6 @@ jsonata
 jt400
 kafka
 kamelet
-kamelet-reify
 kubernetes-config-maps
 kubernetes-custom-resources
 kubernetes-deployments
diff --git 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/kamelet-reify.json
 
b/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/kamelet-reify.json
deleted file mode 100644
index 48416ab..000
--- 
a/catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/kamelet-reify.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{
-  "component": {
-"kind": "component",
-"name": "kamelet-reify",
-"title": "Kamelet Reify",
-"description": "To call Kamelets (indirectly)",
-"deprecated": true,
-"firstVersion": "3.6.0",
-"label": "core",
-"javaType": 
"org.apache.camel.component.kameletreify.KameletReifyComponent",
-"supportLevel": "Stable",
-"groupId": "org.apache.camel",
-"artifactId": "camel-kamelet-reify",
-"version": "3.15.0-SNAPSHOT",
-"scheme": "kamelet-reify",
-"extendsScheme": "",
-"syntax": "kamelet-reify:delegateUri",
-"async": false,
-"api": false,
-"consumerOnly": false,
-"producerOnly": false,
-"lenientProperties": true
-  },
-  "componentProperties": {
-"bridgeErrorHandler": { "kind": "property", "displayName": "Bridge Error 
Handler", "group": "consumer", "label": "consumer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Allows for bridging the 
consumer to the Camel routing Error Handler, which mean any exceptions occurred 
while the consumer is trying to pickup incoming messages, or the likes, will 
now be processed as a me [...]
-"lazyStartProducer": { "kind": "property", "displayName": "Lazy Start 
Producer", "group": "producer", "label": "producer", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": false, "description": "Whether the producer 
should be started lazy (on the first message). By starting lazy you can use 
this to allow CamelContext and routes to startup in situations where a producer 
may otherwise fail during star [...]
-"autowiredEnabled": { "kind": "property", "displayName": "Autowired 
Enabled", "group": "advanced", "label": "advanced", "required": false, "type": 
"boolean", "javaType": "boolean", "deprecated": false, "autowired": false, 
"secret": false, "defaultValue": true, "description": "Whether autowiring is 
enabled. This is used for automatic 

[camel] 01/03: Remove camel-kamelet-reify - no longer in use.

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 1b9ef7e288be66b608f8681d371b317a52ad344c
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 12:16:40 2021 +0100

Remove camel-kamelet-reify - no longer in use.
---
 components/camel-kamelet-reify/pom.xml |  85 ---
 .../KameletReifyComponentConfigurer.java   |  61 
 .../KameletReifyEndpointConfigurer.java|  67 -
 .../KameletReifyEndpointUriFactory.java|  65 -
 .../services/org/apache/camel/component.properties |   7 -
 .../org/apache/camel/component/kamelet-reify   |   2 -
 .../camel/configurer/kamelet-reify-component   |   2 -
 .../apache/camel/configurer/kamelet-reify-endpoint |   2 -
 .../apache/camel/urifactory/kamelet-reify-endpoint |   2 -
 .../component/kameletreify/kamelet-reify.json  |  36 -
 .../src/main/docs/kamelet-reify-component.adoc |  44 --
 .../camel/component/kameletreify/KameletReify.java |  45 --
 .../kameletreify/KameletReifyComponent.java|  91 
 .../kameletreify/KameletReifyEndpoint.java | 162 -
 .../component/kameletreify/KameletReifyIT.java | 114 ---
 .../src/test/resources/log4j2-test.xml |  42 --
 components/pom.xml |   1 -
 17 files changed, 828 deletions(-)

diff --git a/components/camel-kamelet-reify/pom.xml 
b/components/camel-kamelet-reify/pom.xml
deleted file mode 100644
index 0ae630d..000
--- a/components/camel-kamelet-reify/pom.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
-4.0.0
-
-
-org.apache.camel
-components
-3.15.0-SNAPSHOT
-
-
-camel-kamelet-reify
-jar
-
-Camel :: Kamelet Reifiy (deprecated)
-To call Kamelets (indirectly)
-
-
-
-
-org.apache.camel
-camel-core-reifier
-
-
-org.apache.camel
-camel-core-model
-
-
-
-
-org.apache.camel
-camel-test-infra-common
-${project.version}
-test-jar
-test
-
-
-org.apache.camel
-camel-test-infra-activemq
-${project.version}
-test
-test-jar
-
-
-
-org.apache.camel
-camel-test-junit5
-test
-
-
-org.apache.camel
-camel-activemq
-test
-
-
-org.assertj
-assertj-core
-test
-
-
-org.apache.logging.log4j
-log4j-slf4j-impl
-test
-
-
-
-
-
diff --git 
a/components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyComponentConfigurer.java
 
b/components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyComponentConfigurer.java
deleted file mode 100644
index 044d16e..000
--- 
a/components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyComponentConfigurer.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/* Generated by camel build tools - do NOT edit this file! */
-package org.apache.camel.component.kameletreify;
-
-import java.util.Map;
-
-import org.apache.camel.CamelContext;
-import org.apache.camel.spi.ExtendedPropertyConfigurerGetter;
-import org.apache.camel.spi.PropertyConfigurerGetter;
-import org.apache.camel.spi.ConfigurerStrategy;
-import org.apache.camel.spi.GeneratedPropertyConfigurer;
-import org.apache.camel.util.CaseInsensitiveMap;
-import org.apache.camel.support.component.PropertyConfigurerSupport;
-
-/**
- * Generated by camel build tools - do NOT edit this file!
- */
-@SuppressWarnings("unchecked")
-public class KameletReifyComponentConfigurer extends PropertyConfigurerSupport 
implements GeneratedPropertyConfigurer, PropertyConfigurerGetter {
-
-@Override
-public boolean configure(CamelContext camelContext, Object obj, String 
name, Object value, boolean ignoreCase) {
-KameletReifyComponent target = (KameletReifyComponent) obj;
-switch (ignoreCase ? name.toLowerCase() : name) {
-case "autowiredenabled":
-case "autowiredEnabled": 
target.setAutowiredEnabled(property(camelContext, boolean.class, value)); 
return true;
-case "bridgeerrorhandler":
-case "bridgeErrorHandler": 
target.setBridgeErrorHandler(property(camelContext, boolean.class, value)); 
return true;
-case "lazystartproducer":
-case "lazyStartProducer": 
target.setLazyStartProducer(property(camelContext, 

[camel] 02/03: Remove camel-kamelet-reify - no longer in use.

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 0c68a049211dc96ef8137f74029a39771135f52f
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 12:17:25 2021 +0100

Remove camel-kamelet-reify - no longer in use.
---
 parent/pom.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 8872e8c..4930c54 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -1838,11 +1838,6 @@


org.apache.camel
-   camel-kamelet-reify
-   ${project.version}
-   
-   
-   org.apache.camel
camel-kamelet
${project.version}



[camel] branch main updated (9d44c96 -> 45fcd16)

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from 9d44c96  Drop Java 8
 new 1b9ef7e  Remove camel-kamelet-reify - no longer in use.
 new 0c68a04  Remove camel-kamelet-reify - no longer in use.
 new 45fcd16  Remove camel-kamelet-reify - no longer in use.

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:
 bom/camel-bom/pom.xml  |   5 -
 catalog/camel-allcomponents/pom.xml|   4 -
 .../org/apache/camel/catalog/components.properties |   1 -
 .../camel/catalog/components/kamelet-reify.json|  36 -
 components/camel-kamelet-reify/pom.xml |  85 ---
 .../KameletReifyComponentConfigurer.java   |  61 
 .../KameletReifyEndpointConfigurer.java|  67 -
 .../KameletReifyEndpointUriFactory.java|  65 -
 .../services/org/apache/camel/component.properties |   7 -
 .../org/apache/camel/component/kamelet-reify   |   2 -
 .../camel/configurer/kamelet-reify-component   |   2 -
 .../apache/camel/configurer/kamelet-reify-endpoint |   2 -
 .../apache/camel/urifactory/kamelet-reify-endpoint |   2 -
 .../component/kameletreify/kamelet-reify.json  |  36 -
 .../src/main/docs/kamelet-reify-component.adoc |  44 --
 .../camel/component/kameletreify/KameletReify.java |  45 --
 .../kameletreify/KameletReifyComponent.java|  91 
 .../kameletreify/KameletReifyEndpoint.java | 162 -
 .../component/kameletreify/KameletReifyIT.java | 114 ---
 .../src/test/resources/log4j2-test.xml |  42 --
 components/pom.xml |   1 -
 .../org/apache/camel/main/components.properties|   1 -
 .../modules/ROOT/examples/json/kamelet-reify.json  |   1 -
 docs/components/modules/ROOT/nav.adoc  |   1 -
 .../ROOT/pages/kamelet-reify-component.adoc|   1 -
 .../ROOT/pages/camel-3x-upgrade-guide-3_15.adoc|   4 +
 .../EndpointConsumerDeserializersResolver.java |   1 -
 .../EndpointProducerDeserializersResolver.java |   1 -
 parent/pom.xml |   5 -
 29 files changed, 4 insertions(+), 885 deletions(-)
 delete mode 100644 
catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/components/kamelet-reify.json
 delete mode 100644 components/camel-kamelet-reify/pom.xml
 delete mode 100644 
components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyComponentConfigurer.java
 delete mode 100644 
components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyEndpointConfigurer.java
 delete mode 100644 
components/camel-kamelet-reify/src/generated/java/org/apache/camel/component/kameletreify/KameletReifyEndpointUriFactory.java
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/component.properties
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/component/kamelet-reify
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/configurer/kamelet-reify-component
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/configurer/kamelet-reify-endpoint
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/META-INF/services/org/apache/camel/urifactory/kamelet-reify-endpoint
 delete mode 100644 
components/camel-kamelet-reify/src/generated/resources/org/apache/camel/component/kameletreify/kamelet-reify.json
 delete mode 100644 
components/camel-kamelet-reify/src/main/docs/kamelet-reify-component.adoc
 delete mode 100644 
components/camel-kamelet-reify/src/main/java/org/apache/camel/component/kameletreify/KameletReify.java
 delete mode 100644 
components/camel-kamelet-reify/src/main/java/org/apache/camel/component/kameletreify/KameletReifyComponent.java
 delete mode 100644 
components/camel-kamelet-reify/src/main/java/org/apache/camel/component/kameletreify/KameletReifyEndpoint.java
 delete mode 100644 
components/camel-kamelet-reify/src/test/java/org/apache/camel/component/kameletreify/KameletReifyIT.java
 delete mode 100644 
components/camel-kamelet-reify/src/test/resources/log4j2-test.xml
 delete mode 12 
docs/components/modules/ROOT/examples/json/kamelet-reify.json
 delete mode 12 
docs/components/modules/ROOT/pages/kamelet-reify-component.adoc


[camel-karaf] branch main updated: Remove camel-kamelet-reify - no longer in use.

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 735cdc3  Remove camel-kamelet-reify - no longer in use.
735cdc3 is described below

commit 735cdc37cd12a98b28a21612de113ab5faca3fba
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 12:17:58 2021 +0100

Remove camel-kamelet-reify - no longer in use.
---
 platforms/karaf/features/src/main/resources/features.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/platforms/karaf/features/src/main/resources/features.xml 
b/platforms/karaf/features/src/main/resources/features.xml
index f212e75..9245a23 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -1363,10 +1363,6 @@
 camel-http
 mvn:org.apache.camel/camel-kamelet/${project.version}
   
-  
-camel-kamelet
-
mvn:org.apache.camel/camel-kamelet-reify/${project.version}
-  
   
 camel-core
 mvn:javax.validation/validation-api/${validation-1-api-version}


[camel] branch regen_bot updated (34e086a -> 9d44c96)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from 34e086a  Drop Java 8
 add 9d44c96  Drop Java 8

No new revisions were added by this update.

Summary of changes:
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc | 4 
 1 file changed, 4 insertions(+)


[camel-karaf] branch main updated: Drop Java 8

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 3708509  Drop Java 8
3708509 is described below

commit 370850946119ac5219af0830bdd8c7dd5bf9a210
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 11:07:07 2021 +0100

Drop Java 8
---
 platforms/karaf/features/src/main/resources/features.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/platforms/karaf/features/src/main/resources/features.xml 
b/platforms/karaf/features/src/main/resources/features.xml
index b5302f8..f212e75 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -34,6 +34,7 @@
   
 
   
+wrap 
 camel-core
 camel-blueprint
 
@@ -116,7 +117,6 @@
 
   
   
-wrap
 camel-jms
 spring
 mvn:org.apache.geronimo.specs/geronimo-annotation_1.0_spec/1.1.1
@@ -575,7 +575,6 @@
 mvn:org.apache.camel/camel-cometd/${project.version}
   
   
-wrap
 camel-core
 mvn:com.google.guava/failureaccess/1.0.1
 mvn:com.google.guava/guava/27.1-jre
@@ -593,7 +592,6 @@
 mvn:org.apache.camel/camel-consul/${project.version}
   
   
-wrap
 camel-core
 mvn:io.reactivex/rxjava/${rxjava-version}
 wrap:mvn:net.corda/corda-core/${corda-version}
@@ -1071,7 +1069,6 @@
 mvn:org.apache.camel/camel-http/${project.version}
   
   
-wrap
 camel-core
 mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.hystrix/${hystrix-bundle-version}
 mvn:org.apache.servicemix.bundles/org.apache.servicemix.bundles.hystrix-event-stream/${hystrix-bundle-version}


[camel-karaf] branch main updated: Drop Java 8

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 6f164bc  Drop Java 8
6f164bc is described below

commit 6f164bcbab2866bcc06bd9c6ff106dff125e1342
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 11:02:13 2021 +0100

Drop Java 8
---
 platforms/karaf/features/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/platforms/karaf/features/pom.xml b/platforms/karaf/features/pom.xml
index df7a4ca..9db6d14 100644
--- a/platforms/karaf/features/pom.xml
+++ b/platforms/karaf/features/pom.xml
@@ -126,7 +126,7 @@
 
mvn:org.apache.karaf.features/spring/${karaf4-version}/xml/features
 
 
org.apache.karaf.features:framework
-9
+11
 
 framework
 


[camel] branch main updated: Drop Java 8

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 9d44c96  Drop Java 8
9d44c96 is described below

commit 9d44c96b04319fa28016a50922cc342c6bb35d56
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 10:57:32 2021 +0100

Drop Java 8
---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc | 4 
 1 file changed, 4 insertions(+)

diff --git 
a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc 
b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc
index 29dce0f..79eff28 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_15.adoc
@@ -61,3 +61,7 @@ This should correctly be done with `steps` as child of `from`:
   steps:
 - log: "message"
 
+
+=== camel-karaf
+
+The `camel-endpointdsl` and `camel-componentdsl` is no longer supported on 
Apache Karaf.


[camel-karaf] branch main updated (c17069b -> 865592e)

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from c17069b  CAMEL-17329: Drop Java 8 and set source/target to Java 11
 new 304d580  Polished
 new 865592e  Drop Java 8

The 2 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:
 platforms/karaf/features/pom.xml | 1 -
 platforms/karaf/features/src/main/resources/features.xml | 1 -
 2 files changed, 2 deletions(-)


[camel-karaf] 02/02: Drop Java 8

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 865592edd053a809e5abcccd4d35082723a19b28
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 10:57:20 2021 +0100

Drop Java 8
---
 platforms/karaf/features/src/main/resources/features.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/platforms/karaf/features/src/main/resources/features.xml 
b/platforms/karaf/features/src/main/resources/features.xml
index c03aba1..b5302f8 100644
--- a/platforms/karaf/features/src/main/resources/features.xml
+++ b/platforms/karaf/features/src/main/resources/features.xml
@@ -64,7 +64,6 @@
 mvn:org.apache.camel/camel-xml-jaxb/${project.version}
 
mvn:org.apache.camel/camel-tooling-model/${project.version}
 mvn:org.apache.camel/camel-main/${project.version}
-mvn:org.apache.camel/camel-endpointdsl/${project.version}
 
 
mvn:org.apache.camel.karaf/camel-bean-osgi/${project.version}
 mvn:org.apache.camel/camel-bean/${project.version}


[camel-karaf] 01/02: Polished

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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

commit 304d5808c1d1ac36587c1d37a06d8958052b8352
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 10:47:24 2021 +0100

Polished
---
 platforms/karaf/features/pom.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/platforms/karaf/features/pom.xml b/platforms/karaf/features/pom.xml
index 21370e5..df7a4ca 100644
--- a/platforms/karaf/features/pom.xml
+++ b/platforms/karaf/features/pom.xml
@@ -200,7 +200,6 @@
 
 
 
-
 
 fastinstall
 


[camel] branch regen_bot updated (e7338c8 -> 34e086a)

2021-12-25 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

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


from e7338c8  Regen for commit d1530a907a9d66b343ce82e02abf817bc192876f
 add 34e086a  Drop Java 8

No new revisions were added by this update.

Summary of changes:
 .../main/java/org/apache/camel/component/file/FileOperations.java  | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)


[camel] branch main updated: Drop Java 8

2021-12-25 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 34e086a  Drop Java 8
34e086a is described below

commit 34e086affe5e390121e276a06bb5c16470ae7f6a
Author: Claus Ibsen 
AuthorDate: Sat Dec 25 09:16:45 2021 +0100

Drop Java 8
---
 .../main/java/org/apache/camel/component/file/FileOperations.java  | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git 
a/components/camel-file/src/main/java/org/apache/camel/component/file/FileOperations.java
 
b/components/camel-file/src/main/java/org/apache/camel/component/file/FileOperations.java
index 4d6710e..cfe03cd 100644
--- 
a/components/camel-file/src/main/java/org/apache/camel/component/file/FileOperations.java
+++ 
b/components/camel-file/src/main/java/org/apache/camel/component/file/FileOperations.java
@@ -80,7 +80,7 @@ public class FileOperations implements 
GenericFileOperations {
 
 @Override
 public boolean renameFile(String from, String to) throws 
GenericFileOperationFailedException {
-boolean renamed = false;
+boolean renamed;
 File file = new File(from);
 File target = new File(to);
 try {
@@ -456,7 +456,6 @@ public class FileOperations implements 
GenericFileOperations {
 
 private void writeFileByStream(InputStream in, File target) throws 
IOException {
 try (SeekableByteChannel out = prepareOutputFileChannel(target)) {
-
 LOG.debug("Using InputStream to write file: {}", target);
 int size = endpoint.getBufferSize();
 byte[] buffer = new byte[size];
@@ -464,12 +463,10 @@ public class FileOperations implements 
GenericFileOperations {
 int bytesRead;
 while ((bytesRead = in.read(buffer)) != -1) {
 if (bytesRead < size) {
-// to be compatible with java 8
 Buffer buf = byteBuffer;
 buf.limit(bytesRead);
 }
 out.write(byteBuffer);
-// to be compatible with java 8
 Buffer buf = byteBuffer;
 buf.clear();
 }
@@ -478,11 +475,9 @@ public class FileOperations implements 
GenericFileOperations {
 if (append && endpoint.getAppendChars() != null) {
 byteBuffer = 
ByteBuffer.wrap(endpoint.getAppendChars().getBytes());
 out.write(byteBuffer);
-// to be compatible with java 8
 Buffer buf = byteBuffer;
 buf.clear();
 }
-
 } finally {
 IOHelper.close(in, target.getName(), LOG);
 }