You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ranger.apache.org by ma...@apache.org on 2015/11/05 23:13:22 UTC

[6/7] incubator-ranger git commit: Ranger-652: Excluding windows azure package dependency in Ldap Config check tool

Ranger-652: Excluding windows azure package dependency in Ldap Config check tool

Signed-off-by: Velmurugan Periasamy <ve...@apache.org>
(cherry picked from commit ec3d1121d8a7b6e6018f1d6c5330ccd902884025)


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

Branch: refs/heads/tag-policy
Commit: 3fdcfc4929c34269d0ed1a3842dc6da067093c8f
Parents: a61a17f
Author: Sailaja Polavarapu <sp...@hortonworks.com>
Authored: Tue Nov 3 10:01:25 2015 -0800
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Thu Nov 5 14:00:22 2015 -0800

----------------------------------------------------------------------
 .../ldapconfigchecktool/ldapconfigcheck/pom.xml | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/3fdcfc49/ugsync/ldapconfigchecktool/ldapconfigcheck/pom.xml
----------------------------------------------------------------------
diff --git a/ugsync/ldapconfigchecktool/ldapconfigcheck/pom.xml b/ugsync/ldapconfigchecktool/ldapconfigcheck/pom.xml
index 4ac823f..8d7a150 100644
--- a/ugsync/ldapconfigchecktool/ldapconfigcheck/pom.xml
+++ b/ugsync/ldapconfigchecktool/ldapconfigcheck/pom.xml
@@ -90,17 +90,27 @@
 		    <version>${springframework.security.version}</version>
 		</dependency>
       <dependency>
-	  	<groupId>org.apache.ranger</groupId>
-    	<artifactId>credentialbuilder</artifactId>
-    	<version>${project.version}</version>  	
+  	 <groupId>org.apache.ranger</groupId>
+	 <artifactId>credentialbuilder</artifactId>
+    	 <version>${project.version}</version>  	
+       	 <exclusions>
+	   <exclusion>
+  	     <groupId>com.microsoft.windowsazure</groupId>
+  	     <artifactId>*</artifactId>
+	   </exclusion>
+       	 </exclusions>
       </dependency>
-
       <dependency>
         <groupId>org.apache.ranger</groupId>
         <artifactId>ranger-util</artifactId>
         <version>${project.version}</version>
+          <exclusions>
+	    <exclusion>
+	      <groupId>com.microsoft.windowsazure</groupId>
+	      <artifactId>*</artifactId>
+	    </exclusion>
+          </exclusions>
       </dependency>
-
     </dependencies>
   <build>
     <finalName>ldapconfigcheck</finalName>