diff options
author | Brett Porter <brett@apache.org> | 2011-10-01 05:00:11 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2011-10-01 05:00:11 +0000 |
commit | 4573dd842091f736a8b1cc42d82e37da126db020 (patch) | |
tree | 631963eabf8c68cd6734fb21acb34609318c552a | |
parent | 9c40ca597bd6d7c615b682b0af30f45268654247 (diff) | |
download | archiva-4573dd842091f736a8b1cc42d82e37da126db020.tar.gz archiva-4573dd842091f736a8b1cc42d82e37da126db020.zip |
avoid derby.log in root
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1177912 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | archiva-modules/archiva-web/archiva-xmlrpc/archiva-xmlrpc-security/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/archiva-modules/archiva-web/archiva-xmlrpc/archiva-xmlrpc-security/pom.xml b/archiva-modules/archiva-web/archiva-xmlrpc/archiva-xmlrpc-security/pom.xml index e52227f96..d25fd3743 100644 --- a/archiva-modules/archiva-web/archiva-xmlrpc/archiva-xmlrpc-security/pom.xml +++ b/archiva-modules/archiva-web/archiva-xmlrpc/archiva-xmlrpc-security/pom.xml @@ -129,4 +129,17 @@ <artifactId>derby</artifactId> </dependency> </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemPropertyVariables> + <derby.system.home>${project.build.directory}/appserver-base</derby.system.home> + </systemPropertyVariables> + </configuration> + </plugin> + </plugins> + </build> </project> |