Skip to content

Commit

Permalink
chore(plugin): generate lower case names for resources
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaferraro authored and astefanutti committed Dec 16, 2019
1 parent af87a18 commit 831294e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
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 {
Expand Down

0 comments on commit 831294e

Please sign in to comment.