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.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/java/perftests/pom.xml b/java/perftests/pom.xml
index c395069e84..7787c82b74 100644
--- a/java/perftests/pom.xml
+++ b/java/perftests/pom.xml
@@ -156,6 +156,48 @@
<skip>true</skip>
</configuration>
</plugin>
+
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>exec-maven-plugin</artifactId>
+ <version>1.3.2</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>java</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <mainClass>org.apache.qpid.disttest.ControllerRunner</mainClass>
+ <includePluginDependencies>true</includePluginDependencies>
+ <arguments>
+ <argument>jndi-config=${basedir}/etc/perftests-jndi.properties</argument>
+ <argument>test-config=${basedir}/etc/testdefs</argument>
+ <argument>distributed=false</argument>
+ <argument>writeToDb=false</argument>
+ </arguments>
+ <systemProperties>
+ <systemProperty>
+ <key>qpid.amqp</key><value>0-91</value>
+ </systemProperty>
+ <systemProperty>
+ <key>qpid.dest_syntax</key><value>BURL</value>
+ </systemProperty>
+ <systemProperty>
+ <key>qpid.disttest.duration</key><value>5000</value>
+ </systemProperty>
+ </systemProperties>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.geronimo.specs</groupId>
+ <artifactId>geronimo-jms_1.1_spec</artifactId>
+ <version>${geronimo-jms-1-1-version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+
</plugins>
</build>