This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a commit to branch camel-4.14.x
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-4.14.x by this push:
new 34567e84a08 Fix camel.jbang.repo option
34567e84a08 is described below
commit 34567e84a08404656d0f233cf48b58fa9dd78728
Author: Salvatore Mongiardo <[email protected]>
AuthorDate: Tue Sep 16 17:39:45 2025 +0200
Fix camel.jbang.repo option
---
.../org/apache/camel/dsl/jbang/core/commands/ExportBaseCommand.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 3429a14c0c6..34cebfef590 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
@@ -959,7 +959,7 @@ public abstract class ExportBaseCommand extends
CamelCommand {
protected String getMavenRepositories(Path settings, Properties prop,
String camelVersion) throws Exception {
Set<String> answer = new LinkedHashSet<>();
- String propRepositories = prop.getProperty(CLASSPATH_FILES);
+ String propRepositories = prop.getProperty(REPOS);
if (propRepositories != null) {
answer.add(propRepositories);
}