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

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


The following commit(s) were added to refs/heads/main by this push:
     new 8f10356  chore: remove dependency from quarkus and use default format 
for dependencies
8f10356 is described below

commit 8f103567a1a40909bf228f7db067f2722021249c
Author: nicolaferraro <[email protected]>
AuthorDate: Mon May 3 14:58:06 2021 +0200

    chore: remove dependency from quarkus and use default format for 
dependencies
---
 aws-sns-fifo-sink.kamelet.yaml                                       | 3 +--
 aws-sqs-fifo-sink.kamelet.yaml                                       | 3 +--
 cron-source.kamelet.yaml                                             | 2 +-
 earthquake-source.kamelet.yaml                                       | 5 ++---
 http-sink.kamelet.yaml                                               | 3 +--
 http-source.kamelet.yaml                                             | 3 +--
 .../src/main/resources/kamelets/aws-sns-fifo-sink.kamelet.yaml       | 3 +--
 .../src/main/resources/kamelets/aws-sqs-fifo-sink.kamelet.yaml       | 3 +--
 .../src/main/resources/kamelets/cron-source.kamelet.yaml             | 2 +-
 .../src/main/resources/kamelets/earthquake-source.kamelet.yaml       | 5 ++---
 .../src/main/resources/kamelets/http-sink.kamelet.yaml               | 3 +--
 .../src/main/resources/kamelets/http-source.kamelet.yaml             | 3 +--
 12 files changed, 14 insertions(+), 24 deletions(-)

diff --git a/aws-sns-fifo-sink.kamelet.yaml b/aws-sns-fifo-sink.kamelet.yaml
index 8acd9c2..251cbe9 100644
--- a/aws-sns-fifo-sink.kamelet.yaml
+++ b/aws-sns-fifo-sink.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: sink
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: AWS SNS FIFO Sink
@@ -57,7 +56,7 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
   dependencies:
-  - camel-quarkus:aws2-sns
+  - camel:aws2-sns
   flow:
     from:
       uri: kamelet:source
diff --git a/aws-sqs-fifo-sink.kamelet.yaml b/aws-sqs-fifo-sink.kamelet.yaml
index 2b736e5..0417d29 100644
--- a/aws-sqs-fifo-sink.kamelet.yaml
+++ b/aws-sqs-fifo-sink.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: sink
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: AWS SQS FIFO Sink
@@ -57,7 +56,7 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
   dependencies:
-  - camel-quarkus:aws2-sqs
+  - camel:aws2-sqs
   flow:
     from:
       uri: kamelet:source
diff --git a/cron-source.kamelet.yaml b/cron-source.kamelet.yaml
index d0c83eb..d28c516 100644
--- a/cron-source.kamelet.yaml
+++ b/cron-source.kamelet.yaml
@@ -31,7 +31,7 @@ spec:
     out:
       mediaType: text/plain
   dependencies:
-  - camel-quarkus:quartz
+  - camel:quartz
   flow:
     from:
       uri: "cron:tick"
diff --git a/earthquake-source.kamelet.yaml b/earthquake-source.kamelet.yaml
index 71ed23d..29697a1 100755
--- a/earthquake-source.kamelet.yaml
+++ b/earthquake-source.kamelet.yaml
@@ -8,7 +8,6 @@ metadata:
   labels:
     camel.apache.org/kamelet.type: "source"
     camel.apache.org/kamelet.verified: "true"
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: Earthquake Source
@@ -30,8 +29,8 @@ spec:
     out:
       mediaType: application/json
   dependencies:
-    - camel-quarkus:caffeine
-    - camel-quarkus:http
+    - camel:caffeine
+    - camel:http
   flow:
     from:
       uri: "timer:earthquake"
diff --git a/http-sink.kamelet.yaml b/http-sink.kamelet.yaml
index 00f20d7..be697b1 100644
--- a/http-sink.kamelet.yaml
+++ b/http-sink.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: sink
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: HTTP Sink
@@ -28,7 +27,7 @@ spec:
         type: string
         default: POST
   dependencies:
-  - camel-quarkus:http
+  - camel:http
   flow:
     from:
       uri: kamelet:source
diff --git a/http-source.kamelet.yaml b/http-source.kamelet.yaml
index 3da5a19..bb1fb85 100644
--- a/http-source.kamelet.yaml
+++ b/http-source.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: "source"
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: "HTTP Source"
@@ -34,7 +33,7 @@ spec:
         example: 
"https://gist.githubusercontent.com/nicolaferraro/e3c72ace3c751f9f88273896611ce5fe/raw/3b6f54060bacb56b6719b7386a4645cb59ad6cc1/quote.json";
         pattern: "^(http|https)://.*"
   dependencies:
-    - "camel-quarkus:http"
+    - "camel:http"
   flow:
     from:
       uri: "timer:fetch"
diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sns-fifo-sink.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sns-fifo-sink.kamelet.yaml
index 8acd9c2..251cbe9 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sns-fifo-sink.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sns-fifo-sink.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: sink
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: AWS SNS FIFO Sink
@@ -57,7 +56,7 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
   dependencies:
-  - camel-quarkus:aws2-sns
+  - camel:aws2-sns
   flow:
     from:
       uri: kamelet:source
diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sqs-fifo-sink.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sqs-fifo-sink.kamelet.yaml
index 2b736e5..0417d29 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sqs-fifo-sink.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/aws-sqs-fifo-sink.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: sink
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: AWS SQS FIFO Sink
@@ -57,7 +56,7 @@ spec:
         - 'urn:alm:descriptor:com.tectonic.ui:checkbox'
         default: false
   dependencies:
-  - camel-quarkus:aws2-sqs
+  - camel:aws2-sqs
   flow:
     from:
       uri: kamelet:source
diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/cron-source.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/cron-source.kamelet.yaml
index d0c83eb..d28c516 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/cron-source.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/cron-source.kamelet.yaml
@@ -31,7 +31,7 @@ spec:
     out:
       mediaType: text/plain
   dependencies:
-  - camel-quarkus:quartz
+  - camel:quartz
   flow:
     from:
       uri: "cron:tick"
diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/earthquake-source.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/earthquake-source.kamelet.yaml
index 71ed23d..29697a1 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/earthquake-source.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/earthquake-source.kamelet.yaml
@@ -8,7 +8,6 @@ metadata:
   labels:
     camel.apache.org/kamelet.type: "source"
     camel.apache.org/kamelet.verified: "true"
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: Earthquake Source
@@ -30,8 +29,8 @@ spec:
     out:
       mediaType: application/json
   dependencies:
-    - camel-quarkus:caffeine
-    - camel-quarkus:http
+    - camel:caffeine
+    - camel:http
   flow:
     from:
       uri: "timer:earthquake"
diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/http-sink.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/http-sink.kamelet.yaml
index 00f20d7..be697b1 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/http-sink.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/http-sink.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: sink
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: HTTP Sink
@@ -28,7 +27,7 @@ spec:
         type: string
         default: POST
   dependencies:
-  - camel-quarkus:http
+  - camel:http
   flow:
     from:
       uri: kamelet:source
diff --git 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/http-source.kamelet.yaml
 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/http-source.kamelet.yaml
index 3da5a19..bb1fb85 100644
--- 
a/library/camel-kamelets-catalog/src/main/resources/kamelets/http-source.kamelet.yaml
+++ 
b/library/camel-kamelets-catalog/src/main/resources/kamelets/http-source.kamelet.yaml
@@ -7,7 +7,6 @@ metadata:
     camel.apache.org/provider: "Apache Software Foundation"
   labels:
     camel.apache.org/kamelet.type: "source"
-    camel.apache.org/requires.runtime: "camel-quarkus"
 spec:
   definition:
     title: "HTTP Source"
@@ -34,7 +33,7 @@ spec:
         example: 
"https://gist.githubusercontent.com/nicolaferraro/e3c72ace3c751f9f88273896611ce5fe/raw/3b6f54060bacb56b6719b7386a4645cb59ad6cc1/quote.json";
         pattern: "^(http|https)://.*"
   dependencies:
-    - "camel-quarkus:http"
+    - "camel:http"
   flow:
     from:
       uri: "timer:fetch"

Reply via email to