Repository: directory-fortress-core
Updated Branches:
refs/heads/master 2d8a53071 -> 7bbac4fc1
fix surefire java system properties - version and tenant.
Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/commit/7bbac4fc
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/tree/7bbac4fc
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-core/diff/7bbac4fc
Branch: refs/heads/master
Commit: 7bbac4fc130bb8c29b7b300b166bb32ac72c0920
Parents: 2d8a530
Author: Shawn McKinney <smckinney@apache.org>
Authored: Thu Oct 25 15:19:07 2018 -0500
Committer: Shawn McKinney <smckinney@apache.org>
Committed: Thu Oct 25 15:19:07 2018 -0500
----------------------------------------------------------------------
pom.xml | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/directory-fortress-core/blob/7bbac4fc/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7c40b0b..bafd060 100644
--- a/pom.xml
+++ b/pom.xml
@@ -520,12 +520,16 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xmx1024m</argLine>
- <systemPropertyVariables>
- <version>${tenant}</version>
- </systemPropertyVariables>
- <systemPropertyVariables>
- <version>${project.version}</version>
- </systemPropertyVariables>
+ <systemProperties>
+ <systemProperty>
+ <key>version</key>
+ <value>${project.version}</value>
+ </systemProperty>
+ <systemProperty>
+ <key>tenant</key>
+ <value>${tenant}</value>
+ </systemProperty>
+ </systemProperties>
<excludes>
<exclude>${exclude.tests}</exclude>
</excludes>
@@ -533,7 +537,6 @@
<include>${include.tests}</include>
</includes>
<groups>${testcase.groups}</groups>
- <!--<forkMode>never</forkMode>-->
<runOrder>random</runOrder>
</configuration>
</plugin>
|