Repository: activemq Updated Branches: refs/heads/trunk bf1c57b33 -> eae211202
Exclude some MQTT tests on HP-UX, see AMQ-5267 Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/eae21120 Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/eae21120 Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/eae21120 Branch: refs/heads/trunk Commit: eae21120284b6841b5cd3c4e340d5cbe853f1644 Parents: bf1c57b Author: Kevin Earls <[email protected]> Authored: Thu Jul 10 10:32:20 2014 +0200 Committer: Kevin Earls <[email protected]> Committed: Thu Jul 10 10:32:20 2014 +0200 ---------------------------------------------------------------------- activemq-mqtt/pom.xml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/eae21120/activemq-mqtt/pom.xml ---------------------------------------------------------------------- diff --git a/activemq-mqtt/pom.xml b/activemq-mqtt/pom.xml index 9a3523a..f5e4f84 100755 --- a/activemq-mqtt/pom.xml +++ b/activemq-mqtt/pom.xml @@ -256,5 +256,27 @@ </plugin> </plugins> </build> + <profiles> + <profile> + <id>activemq.tests.hpux.excludes</id> + <activation> + <os> + <family>HP-UX</family> + </os> + </activation> + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>**/MQTT**.*</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </build> + </profile> + </profiles> </project>
