Interesting. I did this in a maven pom just now:
<dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <version>3.3.3</version> </dependency> Everything seems to have resolved just fine. On Tue, Oct 11, 2011 at 6:11 PM, Jim Mochel <jim.mochel....@gmail.com>wrote: > Patrick, > > Thank you for your clear and cogent answer. > > For those who bump into this in the future the IVY entry would look like > this: > > <dependency org="org.apache.zookeeper" name="zookeeper" > rev="3.3.3" conf="core->master"/> > > "core" is one of our internal configurations that in this case of maps to > the "master" configuration. If you go with the typical "core->default" you > will end up with the kitchen sink including JMX jars that do not resolve > cleanly without adding those artifacts to the maven repository. > > -Jim > > On Tue, Oct 11, 2011 at 12:25 PM, Patrick Hunt <ph...@apache.org> wrote: > > > On Tue, Oct 11, 2011 at 7:53 AM, Jim Mochel <jim.mochel....@gmail.com> > > wrote: > > > The good news: Zookeeper looks to be a answer to a significant set of > > design > > > issues we need to resolve. > > > > > > The bad news: From where I stand it's unclear which is the real > zookeeper > > > and how it can be effectively deployed in a production environment. > > > > See our download page for the most recent version (3.3.3): > > http://zookeeper.apache.org/releases.html#download > > > > There's also the news section for history on releases: > > http://zookeeper.apache.org/releases.html#news > > > > > > > > Specifically I have encountered several versions of zookeeper in the > > maven > > > repositories: > > > > <snip> > > > > ZK recently moved to TLP as such the location of the mvn repo changed, > > you can find 3.3.2/3.3.3 here: > > > > > http://people.apache.org/repo/m2-ibiblio-rsync-repository/org/apache/zookeeper/zookeeper/ > > > > Details in the README if you d/l 3.3.3, also available from the source > > tree: > > > > > http://svn.apache.org/viewvc/zookeeper/branches/branch-3.3/README.txt?revision=1038823&view=markup > > > > > Can anyone tell me: > > > > > > 1. What is the most stable and definitive zookeeper implementation? > > > > 3.3.3 currently > > > > > 2. What is JMX is used for within zookeeper ? > > > > Monitoring. > > > > > 3. What is and isn't required for the use of the client library? > > > > Just log4j (take a look at ivy.xml). > > > > Regards, > > > > Patrick > > >