You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/12/21 11:41:11 UTC

(camel-k-runtime) branch main updated: fix(catalog): quarkus jaxb dependency

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 7d5bffb6 fix(catalog): quarkus jaxb dependency
7d5bffb6 is described below

commit 7d5bffb67d0441ea5afdf9f7c2e8eb7646a9ba6d
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Thu Dec 21 10:54:38 2023 +0100

    fix(catalog): quarkus jaxb dependency
---
 .../java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java
index ff376ed3..c74df629 100644
--- a/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java
+++ b/support/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java
@@ -190,7 +190,7 @@ public class GenerateCatalogMojo extends AbstractMojo {
                 MavenSupport.getApplicationProperty(getClass(), "jib.maven-plugin.version"));
             runtimeSpec.putMetadata("jib.layer-filter-extension-maven.version",
                 MavenSupport.getApplicationProperty(getClass(), "jib.layer-filter-extension-maven.version"));
-            
+
             runtimeSpec.applicationClass("io.quarkus.bootstrap.runner.QuarkusEntryPoint");
             runtimeSpec.addDependency("org.apache.camel.k", "camel-k-runtime");
 
@@ -523,7 +523,7 @@ public class GenerateCatalogMojo extends AbstractMojo {
 
         artifacts.clear();
         artifacts.add(Artifact.from("org.apache.camel.quarkus", "camel-quarkus-management"));
-        artifacts.add(Artifact.from("org.apache.camel", "camel-jaxb"));
+        artifacts.add(Artifact.from("org.apache.camel.quarkus", "camel-quarkus-jaxb"));
         artifacts.add(Artifact.from("org.jolokia", "jolokia-jvm"));
         addCapabilityAndDependecies(runtimeSpec, catalogSpec, "jolokia", artifacts, false);
     }