Repository: incubator-ranger Updated Branches: refs/heads/master 787457b58 -> cbee002b8
RANGER-1132 Ranger Storm Plugin should include commons-codec jar as a dependency Project: http://git-wip-us.apache.org/repos/asf/incubator-ranger/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ranger/commit/cbee002b Tree: http://git-wip-us.apache.org/repos/asf/incubator-ranger/tree/cbee002b Diff: http://git-wip-us.apache.org/repos/asf/incubator-ranger/diff/cbee002b Branch: refs/heads/master Commit: cbee002b8976b1631408ae25d12c4aaf54c01701 Parents: 787457b Author: rmani <[email protected]> Authored: Tue Aug 2 10:05:30 2016 -0700 Committer: rmani <[email protected]> Committed: Tue Aug 2 10:05:30 2016 -0700 ---------------------------------------------------------------------- src/main/assembly/storm-agent.xml | 1 + storm-agent/pom.xml | 5 +++++ 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/cbee002b/src/main/assembly/storm-agent.xml ---------------------------------------------------------------------- diff --git a/src/main/assembly/storm-agent.xml b/src/main/assembly/storm-agent.xml index 5671d7b..64224ec 100644 --- a/src/main/assembly/storm-agent.xml +++ b/src/main/assembly/storm-agent.xml @@ -72,6 +72,7 @@ <include>org.codehaus.jackson:jackson-jaxrs</include> <include>org.codehaus.jackson:jackson-mapper-asl</include> <include>org.apache.solr:solr-solrj</include> + <include>commons-codec:commons-codec</include> </includes> </dependencySet> <dependencySet> http://git-wip-us.apache.org/repos/asf/incubator-ranger/blob/cbee002b/storm-agent/pom.xml ---------------------------------------------------------------------- diff --git a/storm-agent/pom.xml b/storm-agent/pom.xml index 86cca53..b975a92 100644 --- a/storm-agent/pom.xml +++ b/storm-agent/pom.xml @@ -94,5 +94,10 @@ <artifactId>httpcore</artifactId> <version>${httpcomponents.httpcore.version}</version> </dependency> + <dependency> + <groupId>commons-codec</groupId> + <artifactId>commons-codec</artifactId> + <version>${commons.codec.version}</version> + </dependency> </dependencies> </project>
