diff options
author | Dominik Stadler <centic@apache.org> | 2017-11-21 16:28:07 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2017-11-21 16:28:07 +0000 |
commit | dcd40982f32bb72364a8746b26dcc3f1d727e53b (patch) | |
tree | 59d0741e41ea4a371075db61877f0eb801462514 /sonar/ooxml | |
parent | bb40ff4fd3061cb227218a762850543a1bf1ebb2 (diff) | |
download | poi-dcd40982f32bb72364a8746b26dcc3f1d727e53b.tar.gz poi-dcd40982f32bb72364a8746b26dcc3f1d727e53b.zip |
Try if using a local temporary directory avoids the permission errors in unit tests in the Maven runs:
* Collect JUnit results
* Set java.io.tmpdir in Maven unit test runs
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1815951 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sonar/ooxml')
-rw-r--r-- | sonar/ooxml/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar/ooxml/pom.xml b/sonar/ooxml/pom.xml index f5c23afaf2..65745528a2 100644 --- a/sonar/ooxml/pom.xml +++ b/sonar/ooxml/pom.xml @@ -93,7 +93,7 @@ <artifactId>maven-surefire-plugin</artifactId> <version>${maven.plugin.surefire.version}</version> <configuration> - <argLine>@{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -XX:-OmitStackTraceInFastThrow</argLine> + <argLine>@{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -Djava.io.tmpdir=target/tmp -XX:-OmitStackTraceInFastThrow</argLine> </configuration> </plugin> </plugins> |