Repository: ranger Updated Branches: refs/heads/ranger-0.7 1de5cab13 -> 9f4381080
RANGER-1731: Exclude old guava versions which could cause build problems Project: http://git-wip-us.apache.org/repos/asf/ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/ranger/commit/9f438108 Tree: http://git-wip-us.apache.org/repos/asf/ranger/tree/9f438108 Diff: http://git-wip-us.apache.org/repos/asf/ranger/diff/9f438108 Branch: refs/heads/ranger-0.7 Commit: 9f4381080524c8ab5a4298726c7e4d82b34c7c40 Parents: 1de5cab Author: Abhay Kulkarni <[email protected]> Authored: Wed Sep 26 12:38:39 2018 -0700 Committer: Abhay Kulkarni <[email protected]> Committed: Wed Sep 26 12:38:39 2018 -0700 ---------------------------------------------------------------------- security-admin/pom.xml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ranger/blob/9f438108/security-admin/pom.xml ---------------------------------------------------------------------- diff --git a/security-admin/pom.xml b/security-admin/pom.xml index f863d74..65762ac 100644 --- a/security-admin/pom.xml +++ b/security-admin/pom.xml @@ -281,6 +281,12 @@ <groupId>com.googlecode.owasp-java-html-sanitizer</groupId> <artifactId>owasp-java-html-sanitizer</artifactId> <version>${owasp-java-html-sanitizer.version}</version> + <exclusions> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.ldap</groupId> @@ -395,12 +401,42 @@ <groupId>tomcat</groupId> <artifactId>jasper-runtime</artifactId> </exclusion> + <exclusion> + <groupId>com.sun.jersey</groupId> + <artifactId>jersey-core</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.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>${hadoop.version}</version> + <exclusions> + <exclusion> + <groupId>com.sun.jersey</groupId> + <artifactId>jersey-core</artifactId> + </exclusion> + <exclusion> + <groupId>com.sun.jersey</groupId> + <artifactId>jersey-server</artifactId> + </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.apache.ranger</groupId>
