Skip to content

Commit

Permalink
Remove temp files that leak into container directory - again
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Woods committed Dec 6, 2013
1 parent 125e2b8 commit 0f3c594
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 22 deletions.
Expand Up @@ -100,7 +100,7 @@ public void loadSystemProperties() {

for (final PROPERTIES prop : PROPERTIES.values()) {
final String val = prop.getValue();
LOGGER.trace("{} = {}", val, getProperty(val));
LOGGER.info("{} = {}", val, getProperty(val));
}
}

Expand Down
38 changes: 17 additions & 21 deletions fcrepo-webapp/pom.xml
Expand Up @@ -227,27 +227,6 @@
<contextPath>${test.context.path}</contextPath>
</webApp>

<systemProperties>

<systemProperty>
<name>
com.arjuna.ats.arjuna.common.ObjectStoreEnvironmentBean.default.objectStoreDir
</name>
<value>${project.build.directory}/object-store-default</value>
</systemProperty>

<systemProperty>
<name>com.arjuna.ats.arjuna.objectstore.objectStoreDir</name>
<value>${project.build.directory}/object-store</value>
</systemProperty>

<systemProperty>
<name>fcrepo.activemq.dir</name>
<value>${project.build.directory}/active-mq</value>
</systemProperty>

</systemProperties>

</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -282,6 +261,23 @@
<name>integration-test</name>
<value>true</value>
</systemProperty>

<systemProperty>
<name>
com.arjuna.ats.arjuna.common.ObjectStoreEnvironmentBean.default.objectStoreDir
</name>
<value>${project.build.directory}/object-store-default</value>
</systemProperty>

<systemProperty>
<name>com.arjuna.ats.arjuna.objectstore.objectStoreDir</name>
<value>${project.build.directory}/object-store</value>
</systemProperty>

<systemProperty>
<name>fcrepo.activemq.dir</name>
<value>${project.build.directory}/active-mq</value>
</systemProperty>
</systemProperties>

</configuration>
Expand Down

0 comments on commit 0f3c594

Please sign in to comment.