Repository: lens Updated Branches: refs/heads/master aeca66ad4 -> a2b6125c6
LENS-982 : Fix dependencies for servlet-api for ml-lib Project: http://git-wip-us.apache.org/repos/asf/lens/repo Commit: http://git-wip-us.apache.org/repos/asf/lens/commit/a2b6125c Tree: http://git-wip-us.apache.org/repos/asf/lens/tree/a2b6125c Diff: http://git-wip-us.apache.org/repos/asf/lens/diff/a2b6125c Branch: refs/heads/master Commit: a2b6125c64462c0d6998c4b8474d31eea0b8e676 Parents: aeca66a Author: Amareshwari Sriramadasu <[email protected]> Authored: Mon Mar 28 15:40:11 2016 +0530 Committer: Amareshwari Sriramadasu <[email protected]> Committed: Mon Mar 28 15:40:11 2016 +0530 ---------------------------------------------------------------------- pom.xml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lens/blob/a2b6125c/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 06cae12..309921f 100644 --- a/pom.xml +++ b/pom.xml @@ -1191,6 +1191,10 @@ <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.avro</groupId> + <artifactId>avro-mapred</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -1439,6 +1443,10 @@ <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> + <exclusion> + <groupId>org.eclipse.jetty.orbit</groupId> + <artifactId>javax.servlet</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -1485,6 +1493,22 @@ <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> + <exclusion> + <groupId>com.sun.jersey</groupId> + <artifactId>jersey-server</artifactId> + </exclusion> + <exclusion> + <groupId>com.sun.jersey</groupId> + <artifactId>jersey-json</artifactId> + </exclusion> + <exclusion> + <groupId>com.sun.jersey.contribs</groupId> + <artifactId>jersey-guice</artifactId> + </exclusion> + <exclusion> + <groupId>com.sun.jersey.jersey-test-framework</groupId> + <artifactId>jersey-test-framework-grizzly2</artifactId> + </exclusion> </exclusions> </dependency> <dependency>
