Updated Branches: refs/heads/trunk b807f28c5 -> f88043eaf
AMQ-5028: merge update from dkulp: strip unused dependencies to reduce the size of the WAR file. Project: http://git-wip-us.apache.org/repos/asf/activemq/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/f88043ea Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/f88043ea Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/f88043ea Branch: refs/heads/trunk Commit: f88043eaf7fc1c089b4ffe2770743e28e7b8f6fb Parents: b807f28 Author: artnaseef <[email protected]> Authored: Thu Feb 6 18:26:41 2014 -0700 Committer: artnaseef <[email protected]> Committed: Thu Feb 6 18:28:26 2014 -0700 ---------------------------------------------------------------------- activemq-web-console/pom.xml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq/blob/f88043ea/activemq-web-console/pom.xml ---------------------------------------------------------------------- diff --git a/activemq-web-console/pom.xml b/activemq-web-console/pom.xml index 771ee02..d5fed44 100755 --- a/activemq-web-console/pom.xml +++ b/activemq-web-console/pom.xml @@ -194,6 +194,14 @@ <groupId>${project.groupId}</groupId> <artifactId>activemq-all</artifactId> </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-websocket</artifactId> + </exclusion> + <exclusion> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-continuation</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -239,6 +247,7 @@ <groupId>org.eclipse.jdt</groupId> <artifactId>core</artifactId> <version>3.1.1</version> + <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> @@ -263,16 +272,6 @@ <artifactId>standard</artifactId> </dependency> - <!-- XStream marshalling --> - <dependency> - <groupId>xpp3</groupId> - <artifactId>xpp3</artifactId> - </dependency> - <dependency> - <groupId>com.thoughtworks.xstream</groupId> - <artifactId>xstream</artifactId> - </dependency> - <!-- used for testing --> <dependency> <groupId>junit</groupId>
