You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2020/01/28 11:42:54 UTC

[camel] branch master updated: [CAMEL-14437] Fix catalog preparation

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5a300b7  [CAMEL-14437] Fix catalog preparation
5a300b7 is described below

commit 5a300b795054ecc464187db0289a56aeb481b20c
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Tue Jan 28 12:42:15 2020 +0100

    [CAMEL-14437] Fix catalog preparation
---
 .../main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
index acf27b7..d9c56e2 100644
--- a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
+++ b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareCatalogMojo.java
@@ -581,7 +581,7 @@ public class PrepareCatalogMojo extends AbstractMojo {
             }
         }
 
-        Path all = languagesOutDir.resolve("../dataformats.properties");
+        Path all = languagesOutDir.resolve("../languages.properties");
         Set<String> languagesNames = jsonFiles.stream()
                 .map(PrepareCatalogMojo::asComponentName)
                 .collect(Collectors.toCollection(TreeSet::new));