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

[camel] 01/02: Add todo

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

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

commit 7c3702c3cbd4d7db7ac500e4751d7beb4b1b64c1
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Tue Apr 11 19:32:08 2023 +0200

    Add todo
---
 .../java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java
index a7aed96deea..0dd0799c3d1 100644
--- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java
+++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java
@@ -658,6 +658,7 @@ abstract class ExportBaseCommand extends CamelCommand {
         MavenGav gav;
         if (dep.startsWith("lib:")) {
             // lib:commons-lang3-3.12.0.jar
+            // TODO: scan inside JAR in META-INF/maven and find pom.properties file
             String n = dep.substring(4);
             if (n.endsWith(".jar")) {
                 n = n.substring(0, n.length() - 4);