summaryrefslogtreecommitdiff
path: root/qpid/java/perftests/pom.xml
diff options
context:
space:
mode:
authorAndrew MacBean <macbean@apache.org>2014-10-09 14:56:41 +0000
committerAndrew MacBean <macbean@apache.org>2014-10-09 14:56:41 +0000
commit2ac9bc4491abc1f4d6d66cfe7f88899a1c94ee4c (patch)
treeecc365dd663c670624cf1a950979058b5793f562 /qpid/java/perftests/pom.xml
parent596241e890427e48f78917b9b82aa73816dd2dd6 (diff)
downloadqpid-python-2ac9bc4491abc1f4d6d66cfe7f88899a1c94ee4c.tar.gz
QPID-6138: [Java Perf Tests] Update perf test profiles replacing persistent/auto-ack with persistent/transacted
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1630496 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/perftests/pom.xml')
-rw-r--r--qpid/java/perftests/pom.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/qpid/java/perftests/pom.xml b/qpid/java/perftests/pom.xml
index c395069e84..7787c82b74 100644
--- a/qpid/java/perftests/pom.xml
+++ b/qpid/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>