You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2019/12/16 11:42:29 UTC

[camel-k-runtime] branch master updated: chore(plugin): generate lower case names for resources

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

astefanutti 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 831294e  chore(plugin): generate lower case names for resources
831294e is described below

commit 831294ec2000fbbc35ee53f86acd4e1500dafbe2
Author: Nicola Ferraro <ni...@gmail.com>
AuthorDate: Mon Dec 16 12:14:22 2019 +0100

    chore(plugin): generate lower case names for resources
---
 .../main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tooling/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java b/tooling/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java
index 25b856d..c94a0cf 100644
--- a/tooling/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java
+++ b/tooling/camel-k-maven-plugin/src/main/java/org/apache/camel/k/tooling/maven/GenerateCatalogMojo.java
@@ -153,7 +153,7 @@ public class GenerateCatalogMojo extends AbstractMojo {
                 if ("quarkus".equals(runtime)) {
                     catalogName = String.format("camel-catalog-%s-%s-%s",
                         runtime,
-                        getVersionFor("/META-INF/maven/org.apache.camel.quarkus/camel-catalog-quarkus/pom.properties"),
+                        getVersionFor("/META-INF/maven/org.apache.camel.quarkus/camel-catalog-quarkus/pom.properties").toLowerCase(),
                         getRuntimeVersion().toLowerCase()
                     );
                 } else {