Repository: activemq Updated Branches: refs/heads/trunk 0709c2cc1 -> 2b53036b2
Excluding some tests which hang Jenkins on Windows and Solaris, see AMQ-5270 Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/2b53036b Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/2b53036b Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/2b53036b Branch: refs/heads/trunk Commit: 2b53036b27591ad62db16516bd682e811ffae719 Parents: 0709c2c Author: Kevin Earls <[email protected]> Authored: Thu Jul 10 17:12:09 2014 +0200 Committer: Kevin Earls <[email protected]> Committed: Thu Jul 10 17:12:09 2014 +0200 ---------------------------------------------------------------------- activemq-amqp/pom.xml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/2b53036b/activemq-amqp/pom.xml ---------------------------------------------------------------------- diff --git a/activemq-amqp/pom.xml b/activemq-amqp/pom.xml index 9028ab5..8630e43 100644 --- a/activemq-amqp/pom.xml +++ b/activemq-amqp/pom.xml @@ -176,5 +176,50 @@ </plugins> </build> </profile> + <profile> + <id>activemq.tests.windows.excludes</id> + <activation> + <os> + <family>Windows</family> + </os> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>**/JoramJmsTest.*</exclude> + <exclude>**/JoramJmsNioTest.*</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> + <id>activemq.tests.solaris.excludes</id> + <activation> + <property> + <name>os.name</name> + <value>SunOS</value> + </property> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>**/JoramJmsTest.*</exclude> + <exclude>**/JMSClientSslTest.*</exclude> + <exclude>**/JMSClientNioTest.*</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project>
