You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by rm...@apache.org on 2017/08/11 18:27:29 UTC

ranger git commit: Exclude old guava versions, which could cause build problems, especially with owasp-java-html-sanitizer, which declares the deps as a range: [11.0, ) Guava is already included in the admin module

Repository: ranger
Updated Branches:
  refs/heads/master 9f5721bbe -> 710236322


Exclude old guava versions, which could cause build problems, especially with owasp-java-html-sanitizer, which declares the deps as a range: [11.0,) Guava is already included in the admin module

Signed-off-by: rmani <rm...@hortonworks.com>


Project: http://git-wip-us.apache.org/repos/asf/ranger/repo
Commit: http://git-wip-us.apache.org/repos/asf/ranger/commit/71023632
Tree: http://git-wip-us.apache.org/repos/asf/ranger/tree/71023632
Diff: http://git-wip-us.apache.org/repos/asf/ranger/diff/71023632

Branch: refs/heads/master
Commit: 71023632235ec0ad1e85962f47153c586983b225
Parents: 9f5721b
Author: Zsombor Gegesy <gz...@gmail.com>
Authored: Fri Aug 11 14:45:00 2017 +0200
Committer: rmani <rm...@hortonworks.com>
Committed: Fri Aug 11 11:26:57 2017 -0700

----------------------------------------------------------------------
 security-admin/pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ranger/blob/71023632/security-admin/pom.xml
----------------------------------------------------------------------
diff --git a/security-admin/pom.xml b/security-admin/pom.xml
index cc39be8..c7dc870 100644
--- a/security-admin/pom.xml
+++ b/security-admin/pom.xml
@@ -294,6 +294,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>
@@ -426,6 +432,10 @@
                     <groupId>com.sun.jersey</groupId>
                     <artifactId>jersey-json</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>com.google.guava</groupId>
+                    <artifactId>guava</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>
@@ -441,6 +451,10 @@
                     <groupId>com.sun.jersey</groupId>
                     <artifactId>jersey-server</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>com.google.guava</groupId>
+                    <artifactId>guava</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>