You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2021/08/27 15:00:10 UTC

[camel-quarkus] branch main updated: Polish dependency management

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

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


The following commit(s) were added to refs/heads/main by this push:
     new a6fd391  Polish dependency management
a6fd391 is described below

commit a6fd3910dc8096169c5ccc290e9bb941b41cbe7d
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Tue Aug 3 22:57:51 2021 +0200

    Polish dependency management
---
 extensions-jvm/stitch/deployment/pom.xml         |  4 ++++
 extensions-jvm/stitch/runtime/pom.xml            |  4 ++++
 extensions-support/reactor-netty/runtime/pom.xml |  6 ++++++
 integration-tests/pom.xml                        | 10 ----------
 4 files changed, 14 insertions(+), 10 deletions(-)

diff --git a/extensions-jvm/stitch/deployment/pom.xml b/extensions-jvm/stitch/deployment/pom.xml
index 157347c..49efd46 100644
--- a/extensions-jvm/stitch/deployment/pom.xml
+++ b/extensions-jvm/stitch/deployment/pom.xml
@@ -36,6 +36,10 @@
         </dependency>
         <dependency>
             <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-support-reactor-netty-deployment</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
             <artifactId>camel-quarkus-stitch</artifactId>
         </dependency>
     </dependencies>
diff --git a/extensions-jvm/stitch/runtime/pom.xml b/extensions-jvm/stitch/runtime/pom.xml
index 64db6f6..9bfe081 100644
--- a/extensions-jvm/stitch/runtime/pom.xml
+++ b/extensions-jvm/stitch/runtime/pom.xml
@@ -52,6 +52,10 @@
             <artifactId>camel-quarkus-core</artifactId>
         </dependency>
         <dependency>
+            <groupId>org.apache.camel.quarkus</groupId>
+            <artifactId>camel-quarkus-support-reactor-netty</artifactId>
+        </dependency>
+        <dependency>
             <groupId>org.apache.camel</groupId>
             <artifactId>camel-stitch</artifactId>
         </dependency>
diff --git a/extensions-support/reactor-netty/runtime/pom.xml b/extensions-support/reactor-netty/runtime/pom.xml
index 94fac36..717cbd7 100644
--- a/extensions-support/reactor-netty/runtime/pom.xml
+++ b/extensions-support/reactor-netty/runtime/pom.xml
@@ -62,6 +62,12 @@
         <dependency>
             <groupId>io.projectreactor.netty</groupId>
             <artifactId>reactor-netty</artifactId>
+            <exclusions>
+                <exclusion>
+                    <groupId>io.netty</groupId>
+                    <artifactId>netty-resolver-dns-native-macos</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 74c9a9e..35b6bfc 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -36,16 +36,6 @@
         <quarkus.banner.enabled>false</quarkus.banner.enabled>
     </properties>
 
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>io.quarkus</groupId>
-                <artifactId>quarkus-junit5-internal</artifactId>
-                <version>${quarkus.version}</version>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
-
     <modules>
         <!-- build those first -->
         <module>foundation-grouped</module>