Download zkclient-0.6.jar file

Introduction

You can download zkclient-0.6.jar in this page.

License

The Apache Software License, Version 2.0

Type List

zkclient-0.6.jar file has the following types.

META-INF/MANIFEST.MF
org.I0Itec.zkclient.ContentWatcher.class
org.I0Itec.zkclient.DataUpdater.class
org.I0Itec.zkclient.DistributedQueue.class
org.I0Itec.zkclient.ExceptionUtil.class
org.I0Itec.zkclient.Gateway.class
org.I0Itec.zkclient.GatewayThread.class
org.I0Itec.zkclient.Holder.class
org.I0Itec.zkclient.IDefaultNameSpace.class
org.I0Itec.zkclient.IZkChildListener.class
org.I0Itec.zkclient.IZkConnection.class
org.I0Itec.zkclient.IZkDataListener.class
org.I0Itec.zkclient.IZkStateListener.class
org.I0Itec.zkclient.InMemoryConnection.class
org.I0Itec.zkclient.NetworkUtil.class
org.I0Itec.zkclient.ZkClient.class
org.I0Itec.zkclient.ZkConnection.class
org.I0Itec.zkclient.ZkEventThread.class
org.I0Itec.zkclient.ZkLock.class
org.I0Itec.zkclient.ZkServer.class
org.I0Itec.zkclient.exception.ZkBadVersionException.class
org.I0Itec.zkclient.exception.ZkException.class
org.I0Itec.zkclient.exception.ZkInterruptedException.class
org.I0Itec.zkclient.exception.ZkMarshallingError.class
org.I0Itec.zkclient.exception.ZkNoNodeException.class
org.I0Itec.zkclient.exception.ZkNodeExistsException.class
org.I0Itec.zkclient.exception.ZkTimeoutException.class
org.I0Itec.zkclient.serialize.BytesPushThroughSerializer.class
org.I0Itec.zkclient.serialize.SerializableSerializer.class
org.I0Itec.zkclient.serialize.TcclAwareObjectIputStream.class
org.I0Itec.zkclient.serialize.ZkSerializer.class
org.I0Itec.zkclient.util.ZkPathUtil.class

Pom

zkclient-0.6.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.101tec</groupId>
  <artifactId>zkclient</artifactId>
  <version>0.6</version>
  <name>ZkClient</name>
  <description>A zookeeper client, that makes life a little easier.</description>
  <url>https://github.com/sgroschupf/zkclient</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>sgroschupf</id>
      <name>Stefan Groshupf</name>
    </developer>
    <developer>
      <id>pvoss</id>
      <name>Peter Voss</name>
    </developer>
    <developer>
      <id>jzillmann</id>
      <name>Johannes Zillmann</name>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/sgroschupf/zkclient.git</connection>
    <developerConnection>scm:git:https://github.com/sgroschupf/zkclient.git</developerConnection>
    <url>https://github.com/sgroschupf/zkclient</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.6.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>2.0.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <version>1.6.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.15</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>jmxri</artifactId>
          <groupId>com.sun.jmx</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jms</artifactId>
          <groupId>javax.jms</groupId>
        </exclusion>
        <exclusion>
          <artifactId>jmxtools</artifactId>
          <groupId>com.sun.jdmk</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.apache.zookeeper</groupId>
      <artifactId>zookeeper</artifactId>
      <version>3.4.6</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.8.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>1.4</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

POM Entry

<dependency>
   <groupId>com.101tec</groupId>
   <artifactId>zkclient</artifactId>
   <version>0.6</version>
</dependency>

Download

If you think the following zkclient-0.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download zkclient-0.6.jar file




PreviousNext

Related