Repository: incubator-sentry Updated Branches: refs/heads/master 06d6f3e54 -> dd971a1cd
SENTRY-528: Dependent on multiple versions of servlet-api jars lead to throw an SecurityException when running solr e2e test in eclipse (guoquanshen via Gregory Chanan) Project: http://git-wip-us.apache.org/repos/asf/incubator-sentry/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-sentry/commit/dd971a1c Tree: http://git-wip-us.apache.org/repos/asf/incubator-sentry/tree/dd971a1c Diff: http://git-wip-us.apache.org/repos/asf/incubator-sentry/diff/dd971a1c Branch: refs/heads/master Commit: dd971a1cd49b2e37e3bee966d47ca7e5145657bc Parents: 06d6f3e Author: Gregory Chanan <[email protected]> Authored: Fri Nov 21 13:03:14 2014 -0800 Committer: Gregory Chanan <[email protected]> Committed: Fri Nov 21 13:03:14 2014 -0800 ---------------------------------------------------------------------- sentry-tests/sentry-tests-solr/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-sentry/blob/dd971a1c/sentry-tests/sentry-tests-solr/pom.xml ---------------------------------------------------------------------- diff --git a/sentry-tests/sentry-tests-solr/pom.xml b/sentry-tests/sentry-tests-solr/pom.xml index ce6dccd..d40dbd2 100644 --- a/sentry-tests/sentry-tests-solr/pom.xml +++ b/sentry-tests/sentry-tests-solr/pom.xml @@ -50,10 +50,22 @@ limitations under the License. <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> + <exclusions> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-minicluster</artifactId> + <exclusions> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>junit</groupId>
