Repository: falcon Updated Branches: refs/heads/0.8 5cab56cf8 -> 1a28f2ba9
FALCON-1543 Upgrade Falcon regression to use Active MQ 5.12(Pragya Mittal) Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/1a28f2ba Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/1a28f2ba Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/1a28f2ba Branch: refs/heads/0.8 Commit: 1a28f2ba9e8f1503d85eafad7774abf7efdd12b2 Parents: 5cab56c Author: Pallavi Rao <[email protected]> Authored: Thu Oct 15 12:56:20 2015 +0530 Committer: Pallavi Rao <[email protected]> Committed: Thu Oct 15 12:56:20 2015 +0530 ---------------------------------------------------------------------- falcon-regression/CHANGES.txt | 2 + falcon-regression/merlin-core/pom.xml | 62 +++++++++++++++++++++++++++++- 2 files changed, 63 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/1a28f2ba/falcon-regression/CHANGES.txt ---------------------------------------------------------------------- diff --git a/falcon-regression/CHANGES.txt b/falcon-regression/CHANGES.txt index d88b07f..08dc2a2 100644 --- a/falcon-regression/CHANGES.txt +++ b/falcon-regression/CHANGES.txt @@ -102,6 +102,8 @@ Trunk (Unreleased) via Samarth Gupta) IMPROVEMENTS + FALCON-1543 Upgrade Falcon regression to use Active MQ 5.12(Pragya Mittal via Pallavi Rao) + FALCON-1502 Checkstyle failures in Falcon Regression(Pragya Mittal via Ajay Yadava) FALCON-1384 AbstractEntityHelper.java cleanup (Paul Isaychuk) http://git-wip-us.apache.org/repos/asf/falcon/blob/1a28f2ba/falcon-regression/merlin-core/pom.xml ---------------------------------------------------------------------- diff --git a/falcon-regression/merlin-core/pom.xml b/falcon-regression/merlin-core/pom.xml index 4ed7e68..fc4ccb6 100644 --- a/falcon-regression/merlin-core/pom.xml +++ b/falcon-regression/merlin-core/pom.xml @@ -96,9 +96,69 @@ <dependency> <groupId>org.apache.activemq</groupId> - <artifactId>activemq-core</artifactId> + <artifactId>activemq-all</artifactId> + <version>${activemq.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-pool</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-openwire-legacy</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-camel</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-jaas</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-broker</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-console</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-shiro</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-spring</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-jms-pool</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-amqp</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-mqtt</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-stomp</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.activemq</groupId> + <artifactId>activemq-leveldb-store</artifactId> + </exclusion> + <exclusion> + <groupId>org.fusesource.hawtbuf</groupId> + <artifactId>hawtbuf</artifactId> + </exclusion> + </exclusions> </dependency> + <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId>
