You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/10/13 22:45:40 UTC

[4/5] git commit: use ${project.build.directory} as java.io.tmpdir for unit tests

use ${project.build.directory} as java.io.tmpdir for unit tests


Project: http://git-wip-us.apache.org/repos/asf/maven-scm/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-scm/commit/197585fb
Tree: http://git-wip-us.apache.org/repos/asf/maven-scm/tree/197585fb
Diff: http://git-wip-us.apache.org/repos/asf/maven-scm/diff/197585fb

Branch: refs/heads/master
Commit: 197585fb57f5e033c0b44c79fc2c2d903e4fff4f
Parents: 2b38c8d
Author: olivier lamy <ol...@apache.org>
Authored: Sat Oct 13 22:20:58 2012 +0200
Committer: olivier lamy <ol...@apache.org>
Committed: Sat Oct 13 22:20:58 2012 +0200

----------------------------------------------------------------------
 .../maven-scm-providers-git/pom.xml                |    3 +++
 maven-scm-providers/pom.xml                        |    6 ++++++
 2 files changed, 9 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-scm/blob/197585fb/maven-scm-providers/maven-scm-providers-git/pom.xml
----------------------------------------------------------------------
diff --git a/maven-scm-providers/maven-scm-providers-git/pom.xml b/maven-scm-providers/maven-scm-providers-git/pom.xml
index 290f291..652453b 100644
--- a/maven-scm-providers/maven-scm-providers-git/pom.xml
+++ b/maven-scm-providers/maven-scm-providers-git/pom.xml
@@ -53,6 +53,9 @@
               <excludes>
                 <exclude>nothing</exclude>
               </excludes>
+              <systemPropertyVariables>
+                <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
+              </systemPropertyVariables>
             </configuration>
           </plugin>
         </plugins>

http://git-wip-us.apache.org/repos/asf/maven-scm/blob/197585fb/maven-scm-providers/pom.xml
----------------------------------------------------------------------
diff --git a/maven-scm-providers/pom.xml b/maven-scm-providers/pom.xml
index 41dd195..7534701 100644
--- a/maven-scm-providers/pom.xml
+++ b/maven-scm-providers/pom.xml
@@ -90,6 +90,9 @@
               <excludes>
                 <exclude>**/*TckTest.java</exclude>
               </excludes>
+              <systemPropertyVariables>
+                <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
+              </systemPropertyVariables>
             </configuration>
           </plugin>
         </plugins>
@@ -106,6 +109,9 @@
               <includes>
                 <include>**/*Test*.java</include>
               </includes>
+              <systemPropertyVariables>
+                <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
+              </systemPropertyVariables>
             </configuration>
           </plugin>
         </plugins>