aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules
diff options
context:
space:
mode:
authorOlivier Lamy <olamy@apache.org>2011-08-23 16:35:49 +0000
committerOlivier Lamy <olamy@apache.org>2011-08-23 16:35:49 +0000
commit80b7556bebeb4a919c86105f288eeb40892c2568 (patch)
tree6ebde7ea44b842c7e28a70d6e61051ab0d341871 /archiva-modules
parent324c61a7be5f0c0c3a331cbc1681346403df2bcc (diff)
downloadarchiva-80b7556bebeb4a919c86105f288eeb40892c2568.tar.gz
archiva-80b7556bebeb4a919c86105f288eeb40892c2568.zip
get rid of created ${plexus.home} with derby database created in and never cleaned : could cause some issues -> account locked
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1160783 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules')
-rw-r--r--archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml9
-rw-r--r--archiva-modules/archiva-web/archiva-webapp/pom.xml12
2 files changed, 12 insertions, 9 deletions
diff --git a/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml b/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml
index 912e80983..62d9074b4 100644
--- a/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml
+++ b/archiva-modules/archiva-web/archiva-rest/archiva-rest-services/pom.xml
@@ -207,6 +207,15 @@
</filesets>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <systemPropertyVariables>
+ <plexus.home>${project.build.outputDirectory}</plexus.home>
+ </systemPropertyVariables>
+ </configuration>
+ </plugin>
</plugins>
</build>
diff --git a/archiva-modules/archiva-web/archiva-webapp/pom.xml b/archiva-modules/archiva-web/archiva-webapp/pom.xml
index 21118e417..c68acd2c3 100644
--- a/archiva-modules/archiva-web/archiva-webapp/pom.xml
+++ b/archiva-modules/archiva-web/archiva-webapp/pom.xml
@@ -447,21 +447,15 @@
</resource>
</resources>
<plugins>
- <!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <argLine>-agentlib:yjpagent</argLine>
- <excludes>
- <exclude>**/Abstract*</exclude>
- <exclude>**/*TestCase.java</exclude>
- <exclude>**/*Tests.java</exclude>
- <exclude>**/*TestSuite.java</exclude>
- </excludes>
+ <systemPropertyVariables>
+ <plexus.home>${project.build.outputDirectory}</plexus.home>
+ </systemPropertyVariables>
</configuration>
</plugin>
- -->
<!-- hack for jetty:run, archiva web config files are checked in /WEB-INF/ dir -->
<plugin>
<artifactId>maven-antrun-plugin</artifactId>