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 2022/06/13 16:02:58 UTC

[camel] 01/02: CAMEL-18188: camel-jbang - Use apache maven to download JARs instead of groovy grape

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 6a7feceacc4094e7146419272ab0f0379820ee48
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Jun 13 17:40:39 2022 +0200

    CAMEL-18188: camel-jbang - Use apache maven to download JARs instead of groovy grape
---
 .../src/main/java/org/apache/camel/main/DownloaderHelper.java          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/DownloaderHelper.java b/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/DownloaderHelper.java
index 6b7abfe6aad..69a529cbfe5 100644
--- a/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/DownloaderHelper.java
+++ b/dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/DownloaderHelper.java
@@ -33,10 +33,11 @@ import org.slf4j.LoggerFactory;
  */
 public final class DownloaderHelper {
 
+    public static final String APACHE_SNAPSHOT_REPO = "https://repository.apache.org/snapshots";
+
     private static final Logger LOG = LoggerFactory.getLogger(DownloaderHelper.class);
     private static final String CP = System.getProperty("java.class.path");
 
-    private static final String APACHE_SNAPSHOT_REPO = "https://repository.apache.org/snapshots";
     private static final DownloadThreadPool DOWNLOAD_THREAD_POOL = new DownloadThreadPool();
 
     private DownloaderHelper() {