summaryrefslogtreecommitdiff
path: root/java/perftests/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'java/perftests/pom.xml')
-rw-r--r--java/perftests/pom.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/java/perftests/pom.xml b/java/perftests/pom.xml
index 1751f3f48a..9fc1c95848 100644
--- a/java/perftests/pom.xml
+++ b/java/perftests/pom.xml
@@ -29,6 +29,10 @@
<name>Qpid Performance Tests</name>
<description>Performance testing configuration, code and tests</description>
+ <properties>
+ <test.systest.resource.directory>${basedir}/../systests</test.systest.resource.directory>
+ </properties>
+
<dependencies>
<!-- client deps -->
<dependency>
@@ -86,4 +90,29 @@
</dependency>
</dependencies>
+ <build>
+ <testResources>
+ <testResource>
+ <directory>src/test/java</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </testResource>
+ <testResource>
+ <directory>src/test/resources</directory>
+ </testResource>
+ </testResources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <!--version specified in parent pluginManagement -->
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+
+ </build>
</project>