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 2019/09/10 07:08:49 UTC

[camel-quarkus] branch master updated: chore(it): add noDeps to quarkus-maven-plugin to make hot-reload working in multi-module projects

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-quarkus.git


The following commit(s) were added to refs/heads/master by this push:
     new 0d07b5e  chore(it): add noDeps to quarkus-maven-plugin to make hot-reload working in multi-module projects
0d07b5e is described below

commit 0d07b5eb3023563b4d77805b961d773427f7fc24
Author: lburgazzoli <lb...@gmail.com>
AuthorDate: Mon Sep 9 22:37:31 2019 +0200

    chore(it): add noDeps to quarkus-maven-plugin to make hot-reload working in multi-module projects
---
 integration-tests/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index 48d4a51..d86ee9d 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -75,6 +75,19 @@
     </modules>
 
     <build>
+        <pluginManagement>
+            <plugins>
+                <plugin>
+                    <groupId>io.quarkus</groupId>
+                    <artifactId>quarkus-maven-plugin</artifactId>
+                    <version>${quarkus.version}</version>
+                    <configuration>
+                        <!-- this is needed to make hot-reload working in multi-module projects-->
+                        <noDeps>true</noDeps>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </pluginManagement>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -105,6 +118,7 @@
                 </executions>
             </plugin>
         </plugins>
+
     </build>
 
     <profiles>