Repository: qpid-broker-j Updated Branches: refs/heads/master d1b604f53 -> 6513508ba
QPID-7953: [Java Tests] [Stress Test Tool] Have separate profiles for 0-9 and 0-10 to reduce manual configuration. Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/6513508b Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/6513508b Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/6513508b Branch: refs/heads/master Commit: 6513508ba0aebdd218b4a17ad71f108eefae0f96 Parents: d1b604f Author: Keith Wall <kw...@apache.org> Authored: Wed Oct 4 11:02:04 2017 +0100 Committer: Keith Wall <kw...@apache.org> Committed: Wed Oct 4 11:02:29 2017 +0100 ---------------------------------------------------------------------- tools/pom.xml | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 53 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/6513508b/tools/pom.xml ---------------------------------------------------------------------- diff --git a/tools/pom.xml b/tools/pom.xml index 4eeebcd..9b7f670 100644 --- a/tools/pom.xml +++ b/tools/pom.xml @@ -96,13 +96,64 @@ </dependencies> </profile> <profile> - <id>jms-client-0-x</id> + <id>jms-client-0-9</id> <activation> <property> <name>stresstest</name> - <value>qpid-jms-client-0-x</value> + <value>jms-client-0-9</value> </property> </activation> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <configuration> + <systemProperties> + <systemProperty> + <key>qpid.amqp.version</key><value>0-9</value> + </systemProperty> + </systemProperties> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>org.apache.qpid</groupId> + <artifactId>qpid-client</artifactId> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.geronimo.specs</groupId> + <artifactId>geronimo-jms_1.1_spec</artifactId> + <scope>compile</scope> + </dependency> + </dependencies> + </profile> + <profile> + <id>jms-client-0-10</id> + <activation> + <property> + <name>stresstest</name> + <value>jms-client-0-10</value> + </property> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <configuration> + <systemProperties> + <systemProperty> + <key>qpid.amqp.version</key><value>0-10</value> + </systemProperty> + </systemProperties> + </configuration> + </plugin> + </plugins> + </build> <dependencies> <dependency> <groupId>org.apache.qpid</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org For additional commands, e-mail: commits-h...@qpid.apache.org