This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
The following commit(s) were added to refs/heads/master by this push: new ab7f0dc Fixes #589, fix kamelet-reify component scheme in CamelK catalog ab7f0dc is described below commit ab7f0dce6854f6e4590798406a9689919d5076ec Author: Dhiraj Bokde <dbo...@redhat.com> AuthorDate: Thu Jan 21 23:27:17 2021 -0800 Fixes #589, fix kamelet-reify component scheme in CamelK catalog --- support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy | 2 +- .../org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy b/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy index 1e90f10..5ca2797 100644 --- a/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy +++ b/support/camel-k-maven-plugin/src/it/generate-catalog/verify.groovy @@ -83,7 +83,7 @@ new File(basedir, "catalog.yaml").withReader { assert schemes.size() == 1 schemes[0].with { - assert id == 'wrap' + assert id == 'kamelet-reify' assert passive == false assert http == false } diff --git a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java index d4974e4..bb239a2 100644 --- a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java +++ b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/processors/CatalogProcessor3x.java @@ -171,7 +171,7 @@ public class CatalogProcessor3x implements CatalogProcessor { .groupId("org.apache.camel.k") .artifactId("camel-k-kamelet-reify") .addScheme(new CamelScheme.Builder() - .id("wrap") + .id("kamelet-reify") .build()) .build() );