Repository: incubator-ranger Updated Branches: refs/heads/ranger-0.5 a340b2b7b -> a9e73ddd7
Ranger-652: Excluding windows azure package dependency in Ldap Config check tool Signed-off-by: Velmurugan Periasamy <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/a9e73ddd Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/a9e73ddd Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/a9e73ddd Branch: refs/heads/ranger-0.5 Commit: a9e73ddd7eb2d861d54e4f85e270aa66b2ceb33b Parents: a340b2b Author: Sailaja Polavarapu <[email protected]> Authored: Tue Nov 3 10:01:25 2015 -0800 Committer: Velmurugan Periasamy <[email protected]> Committed: Tue Nov 3 17:45:00 2015 -0500 ---------------------------------------------------------------------- .../ldapconfigchecktool/ldapconfigcheck/pom.xml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/a9e73ddd/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>
