Out of the box, the junit tests of the Neo4j-OGM library create the temporary database files under /tmp.
How can I change this?
Setting java.io.tmpdir in the maven-surefire-plugin config does not seem to do the trick.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<java.io.tmpdir>/alt/tmp</java.io.tmpdir>
</configuration>
</plugin>