Skip to content

Commit

Permalink
PHOENIX-7256 Set java.io.tmpdir to the maven build directory for test…
Browse files Browse the repository at this point in the history
…s in PQS
  • Loading branch information
Aarchy authored Mar 8, 2024
1 parent a5af0c9 commit 7c76899
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
<properties>
<!-- General Properties -->
<top.dir>${project.basedir}</top.dir>
<test.tmp.dir>${project.build.directory}</test.tmp.dir>

<phoenix.version>5.1.3</phoenix.version>

Expand Down Expand Up @@ -246,6 +247,9 @@
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<shutdown>kill</shutdown>
<trimStackTrace>false</trimStackTrace>
<systemPropertyVariables>
<java.io.tmpdir>${test.tmp.dir}</java.io.tmpdir>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
Expand All @@ -263,6 +267,9 @@
<shutdown>kill</shutdown>
<testSourceDirectory>${basedir}/src/it/java</testSourceDirectory>
<trimStackTrace>false</trimStackTrace>
<systemPropertyVariables>
<java.io.tmpdir>${test.tmp.dir}</java.io.tmpdir>
</systemPropertyVariables>
</configuration>
<goals>
<goal>integration-test</goal>
Expand Down

0 comments on commit 7c76899

Please sign in to comment.