Ranger-652: Excluding windows azure package dependency in Ldap Config check tool
Signed-off-by: Velmurugan Periasamy <[email protected]> (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 <[email protected]> Authored: Tue Nov 3 10:01:25 2015 -0800 Committer: Madhan Neethiraj <[email protected]> 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>
