Repository: incubator-ranger Updated Branches: refs/heads/ranger-0.5 6bd35c607 -> b234d38b9
RANGER-804 : Delete groups associated with User causes Exception in UserSync Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/b234d38b Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/b234d38b Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/b234d38b Branch: refs/heads/ranger-0.5 Commit: b234d38b9a9b5489afd397b54e5eff0a85971552 Parents: 6bd35c6 Author: Gautam Borad <[email protected]> Authored: Mon Dec 28 15:58:39 2015 +0530 Committer: Gautam Borad <[email protected]> Committed: Tue Jan 12 14:31:49 2016 +0530 ---------------------------------------------------------------------- src/main/assembly/usersync.xml | 2 ++ ugsync/pom.xml | 10 ++++++++++ 2 files changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/b234d38b/src/main/assembly/usersync.xml ---------------------------------------------------------------------- diff --git a/src/main/assembly/usersync.xml b/src/main/assembly/usersync.xml index 211db7c..cbbc2cf 100644 --- a/src/main/assembly/usersync.xml +++ b/src/main/assembly/usersync.xml @@ -51,6 +51,8 @@ <include>org.apache.ranger:ranger-util</include> <include>commons-io:commons-io:jar:${commons.io.version}</include> <include>org.apache.htrace:htrace-core</include> + <include>commons-httpclient:commons-httpclient</include> + <include>commons-codec:commons-codec</include> </includes> <unpack>false</unpack> </dependencySet> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/b234d38b/ugsync/pom.xml ---------------------------------------------------------------------- diff --git a/ugsync/pom.xml b/ugsync/pom.xml index d0ecb2f..8a1b8ea 100644 --- a/ugsync/pom.xml +++ b/ugsync/pom.xml @@ -110,6 +110,16 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>commons-httpclient</groupId> + <artifactId>commons-httpclient</artifactId> + <version>${commons.httpclient.version}</version> + </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>${commons.codec.version}</version> + </dependency> </dependencies>
