RYA-96 Added zookeeper project to maven dependency management.
Project: http://git-wip-us.apache.org/repos/asf/incubator-rya/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya/commit/b154a5e5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya/tree/b154a5e5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya/diff/b154a5e5 Branch: refs/heads/master Commit: b154a5e542798c401b6335c5e1d48072f2531751 Parents: 01489ef Author: Kevin Chilton <[email protected]> Authored: Fri Jun 24 17:01:15 2016 -0400 Committer: Kevin Chilton <[email protected]> Committed: Fri Jun 24 17:01:15 2016 -0400 ---------------------------------------------------------------------- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/b154a5e5/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ac887b4..e34db76 100644 --- a/pom.xml +++ b/pom.xml @@ -71,6 +71,9 @@ under the License. <accumulo.version>1.6.4</accumulo.version> <!-- Newest: 1.7.0 --> <hadoop.version>2.5.2</hadoop.version> <!-- Newest: 2.7.1 --> + + <!-- Required for GeoMesa 1.2.* --> + <zookeeper.version>3.4.6</zookeeper.version> <pig.version>0.9.2</pig.version> <!-- Newest: 0.15.0 --> @@ -460,6 +463,11 @@ under the License. <artifactId>geomesa-accumulo-distributed-runtime</artifactId> <version>${geomesa.version}</version> </dependency> + <dependency> + <groupId>org.apache.zookeeper</groupId> + <artifactId>zookeeper</artifactId> + <version>${zookeeper.version}</version> + </dependency> <dependency> <groupId>joda-time</groupId>
