You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2020/02/21 10:47:12 UTC

[camel-k-runtime] branch master updated: Add camel-bean to transitive dependencies by default #243

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

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git


The following commit(s) were added to refs/heads/master by this push:
     new 5551788  Add camel-bean to transitive dependencies by default #243
5551788 is described below

commit 555178821a271b01c5b5a8cfdee1dfdfa7517d21
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Fri Feb 21 10:06:10 2020 +0100

    Add camel-bean to transitive dependencies by default #243
---
 camel-k-quarkus/camel-k-runtime-quarkus/deployment/pom.xml | 4 ++++
 camel-k-quarkus/camel-k-runtime-quarkus/runtime/pom.xml    | 4 ++++
 camel-k-runtime-main/pom.xml                               | 9 ++++-----
 3 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/camel-k-quarkus/camel-k-runtime-quarkus/deployment/pom.xml b/camel-k-quarkus/camel-k-runtime-quarkus/deployment/pom.xml
index 8901ead..09f48d8 100644
--- a/camel-k-quarkus/camel-k-runtime-quarkus/deployment/pom.xml
+++ b/camel-k-quarkus/camel-k-runtime-quarkus/deployment/pom.xml
@@ -48,6 +48,10 @@
             <groupId>org.apache.camel.k</groupId>
             <artifactId>camel-k-quarkus-core-deployment</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-bean-deployment</artifactId>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/camel-k-quarkus/camel-k-runtime-quarkus/runtime/pom.xml b/camel-k-quarkus/camel-k-runtime-quarkus/runtime/pom.xml
index e7a7013..7a4709e 100644
--- a/camel-k-quarkus/camel-k-runtime-quarkus/runtime/pom.xml
+++ b/camel-k-quarkus/camel-k-runtime-quarkus/runtime/pom.xml
@@ -32,6 +32,10 @@
             <groupId>org.apache.camel.k</groupId>
             <artifactId>camel-k-quarkus-core</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-bean</artifactId>
+        </dependency>
     </dependencies>
 
     <build>
diff --git a/camel-k-runtime-main/pom.xml b/camel-k-runtime-main/pom.xml
index 69c3053..b618dbe 100644
--- a/camel-k-runtime-main/pom.xml
+++ b/camel-k-runtime-main/pom.xml
@@ -48,6 +48,10 @@
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-main</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-bean</artifactId>
+        </dependency>
 
         <dependency>
             <groupId>org.apache.logging.log4j</groupId>
@@ -102,11 +106,6 @@
             <artifactId>camel-endpointdsl</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-bean</artifactId>
-            <scope>test</scope>
-        </dependency>
 
         <dependency>
             <groupId>org.apache.camel.k</groupId>