summaryrefslogtreecommitdiffstats
path: root/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
diff options
context:
space:
mode:
authorWendy Smoak <wsmoak@apache.org>2009-04-04 03:13:14 +0000
committerWendy Smoak <wsmoak@apache.org>2009-04-04 03:13:14 +0000
commitc388ed3b983e5a72b090c7c764efa7458b273b09 (patch)
treea51b6f76ba19bab95be14ddc0ecc8341d88ef144 /archiva-modules/archiva-web/archiva-webapp-test/pom.xml
parent925f56ad01ea78560b8c1d1a84a18e7882481aec (diff)
downloadarchiva-c388ed3b983e5a72b090c7c764efa7458b273b09.tar.gz
archiva-c388ed3b983e5a72b090c7c764efa7458b273b09.zip
[MRM-1164] Add it.properties to externalize info needed for tests. Adjust directory name for non-classpath resources in pom.
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@761865 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-modules/archiva-web/archiva-webapp-test/pom.xml')
-rw-r--r--archiva-modules/archiva-web/archiva-webapp-test/pom.xml22
1 files changed, 16 insertions, 6 deletions
diff --git a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
index 126580380..1b507b051 100644
--- a/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
+++ b/archiva-modules/archiva-web/archiva-webapp-test/pom.xml
@@ -88,6 +88,16 @@
<testSourceDirectory>src/test/it</testSourceDirectory>
<plugins>
<plugin>
+ <artifactId>maven-resources-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>testResources</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>dependency-maven-plugin</artifactId>
<executions>
@@ -136,22 +146,22 @@
<configuration>
<tasks>
<copy todir="${project.build.directory}/appserver-base">
- <fileset dir="src/test/resources/appserver-base" />
+ <fileset dir="src/test/it-resources/appserver-base" />
</copy>
<copy todir="${project.build.directory}/repository">
- <fileset dir="src/test/resources/repository" />
+ <fileset dir="src/test/it-resources/repository" />
</copy>
<copy todir="${project.build.directory}/index">
- <fileset dir="src/test/resources/index" />
+ <fileset dir="src/test/it-resources/index" />
</copy>
<copy todir="${project.build.directory}/snapshots">
- <fileset dir="src/test/resources/snapshots" />
+ <fileset dir="src/test/it-resources/snapshots" />
</copy>
<copy todir="${project.build.directory}/projects">
- <fileset dir="src/test/resources/projects" />
+ <fileset dir="src/test/it-resources/projects" />
</copy>
<copy todir="${project.build.directory}/local-repo">
- <fileset dir="src/test/resources/local-repo" />
+ <fileset dir="src/test/it-resources/local-repo" />
</copy>
</tasks>
</configuration>