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 2022/01/13 13:21:50 UTC

[camel-quarkus] branch main updated: Make local maven settings applied to surefire plugin so that Quarkus could build the application model accordingly

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 5dbb2ca  Make local maven settings applied to surefire plugin so that Quarkus could build the application model accordingly
5dbb2ca is described below

commit 5dbb2cabc2669393985efab0192e48a59ebc13fe
Author: aldettinger <al...@gmail.com>
AuthorDate: Wed Jan 5 10:49:43 2022 +0100

    Make local maven settings applied to surefire plugin so that Quarkus could build the application model accordingly
---
 pom.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index ae0f396..605174b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -378,9 +378,11 @@
                     <version>${maven-surefire-plugin.version}</version>
                     <configuration>
                         <failIfNoTests>false</failIfNoTests>
-                        <systemProperties>
+                        <systemPropertyVariables>
                             <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
-                        </systemProperties>
+                            <maven.home>${maven.home}</maven.home>
+                            <maven.settings>${session.request.userSettingsFile.path}</maven.settings>
+                        </systemPropertyVariables>
                     </configuration>
                 </plugin>