apupier commented on code in PR #13134: URL: https://github.com/apache/camel/pull/13134#discussion_r1491083778
########## dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/DependencyList.java: ########## @@ -16,146 +16,89 @@ */ package org.apache.camel.dsl.jbang.core.commands; -import java.io.File; +import java.nio.file.Path; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; -import java.util.Properties; +import java.util.Set; +import java.util.TreeSet; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; - -import org.w3c.dom.Document; -import org.w3c.dom.Element; -import org.w3c.dom.NodeList; - -import org.apache.camel.dsl.jbang.core.common.CommandLineHelper; -import org.apache.camel.dsl.jbang.core.common.RuntimeUtil; -import org.apache.camel.dsl.jbang.core.common.XmlHelper; +import org.apache.camel.dsl.jbang.core.common.MavenGavComparator; +import org.apache.camel.main.KameletMain; +import org.apache.camel.main.download.DownloadListener; import org.apache.camel.tooling.maven.MavenGav; -import org.apache.camel.util.CamelCaseOrderedProperties; -import org.apache.camel.util.FileUtil; import picocli.CommandLine; -@CommandLine.Command(name = "list", - description = "Displays all Camel dependencies required to run") -public class DependencyList extends Export { +@CommandLine.Command(name = "list", description = "Displays all Camel dependencies required to run") +public class DependencyList extends CamelCommand { + + // ignored list of dependencies, can be either groupId or artifactId + private static final String[] SKIP_DEPS = new String[] { + "org.fusesource.jansi", "org.apache.logging.log4j", "camel-core-languages", "camel-endpointdsl", + "camel-java-joor-dsl" }; Review Comment: Why are there ignored dependencies? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org