| 组织ID: |
com.github.sgroschupf |
| 项目ID: |
zkclient |
| 版本: |
0.1 |
| 最后修改时间: |
2018-07-24 06:27:59 |
| 包类型: |
jar |
| 标题: |
ZooKeeper Client |
| 描述: |
a zookeeper client, that makes life a little easier |
| 相关URL: |
http://maven.apache.org |
| 大小: |
61.44KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.github.sgroschupf</groupId>
<artifactId>zkclient</artifactId>
<version>0.1</version>
</dependency>
|
| Gradle引入代码: |
com.github.sgroschupf:zkclient:0.1
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.sgroschupf</groupId>
<artifactId>zkclient</artifactId>
<name>ZooKeeper Client</name>
<version>0.1</version>
<packaging>jar</packaging>
<description>a zookeeper client, that makes life a little easier</description>
<url>http://maven.apache.org</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>
<scm>
<connection>scm:git:https://github.com/sgroschupf/zkclient.git</connection>
<developerConnection>scm:git:https://github.com/sgroschupf/zkclient.git</developerConnection>
<url>git://github.com/sgroschupf/zkclient.git</url>
</scm>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<prerequisites>
<maven>2.0.9</maven>
</prerequisites>
<developers>
<developer>
<id>sgroschupf</id>
<name>Stefan Groschupf</name>
<email>sg@101tec.com</email>
</developer>
<developer>
<id>jzillmann</id>
<name>Johannes Zillmann</name>
</developer>
<developer>
<id>erezmazor</id>
<name>Erez Mazor</name>
<email>erezmazor@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.3.3</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<maxmem>1024m</maxmem>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<maxmemory>1g</maxmemory>
<links>
<link>http://java.sun.com/javase/6/docs/api/</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.I0Itec.zkclient.ZkClient$11.class
org.I0Itec.zkclient.ZkConnection.class
org.I0Itec.zkclient.Gateway.class
org.I0Itec.zkclient.ExceptionUtil.class
org.I0Itec.zkclient.ZkServer.class
org.I0Itec.zkclient.ZkClient$6.class
org.I0Itec.zkclient.IZkDataListener.class
org.I0Itec.zkclient.GatewayThread.class
org.I0Itec.zkclient.util.ZkPathUtil$PathFilter$1.class
org.I0Itec.zkclient.util.ZkPathUtil$PathFilter.class
org.I0Itec.zkclient.util.ZkPathUtil.class
org.I0Itec.zkclient.Holder.class
org.I0Itec.zkclient.ZkClient$9.class
org.I0Itec.zkclient.GatewayThread$1.class
org.I0Itec.zkclient.ZkClient$4.class
org.I0Itec.zkclient.exception.ZkBadVersionException.class
org.I0Itec.zkclient.exception.ZkMarshallingError.class
org.I0Itec.zkclient.exception.ZkException$1.class
org.I0Itec.zkclient.exception.ZkInterruptedException.class
org.I0Itec.zkclient.exception.ZkNoNodeException.class
org.I0Itec.zkclient.exception.ZkTimeoutException.class
org.I0Itec.zkclient.exception.ZkNodeExistsException.class
org.I0Itec.zkclient.exception.ZkException.class
org.I0Itec.zkclient.ZkClient$8.class
org.I0Itec.zkclient.InMemoryConnection.class
org.I0Itec.zkclient.DistributedQueue.class
org.I0Itec.zkclient.ZkEventThread.class
org.I0Itec.zkclient.IZkConnection.class
org.I0Itec.zkclient.GatewayThread$2.class
org.I0Itec.zkclient.DistributedQueue$Element.class
org.I0Itec.zkclient.IDefaultNameSpace.class
org.I0Itec.zkclient.ZkClient$3.class
org.I0Itec.zkclient.InMemoryConnection$EventThread.class
org.I0Itec.zkclient.ZkClient$5.class
org.I0Itec.zkclient.IZkChildListener.class
org.I0Itec.zkclient.ZkClient$10.class
org.I0Itec.zkclient.IZkStateListener.class
org.I0Itec.zkclient.ZkClient.class
org.I0Itec.zkclient.ZkLock.class
org.I0Itec.zkclient.serialize.ZkSerializer.class
org.I0Itec.zkclient.serialize.SerializableSerializer.class
org.I0Itec.zkclient.serialize.BytesPushThroughSerializer.class
org.I0Itec.zkclient.NetworkUtil.class
org.I0Itec.zkclient.ContentWatcher.class
org.I0Itec.zkclient.ZkClient$2.class
org.I0Itec.zkclient.ZkClient$12.class
org.I0Itec.zkclient.DataUpdater.class
org.I0Itec.zkclient.ZkClient$1.class
org.I0Itec.zkclient.ZkClient$7.class
org.I0Itec.zkclient.ZkEventThread$ZkEvent.class
META-INF/maven/com.github.sgroschupf/zkclient/pom.xml
META-INF/maven/com.github.sgroschupf/zkclient/pom.properties
|
| 依赖Jar: |
zookeeper-3.3.3.jar
/org.apache.zookeeper/zookeeper/3.3.3
查看zookeeper所有版本文件
log4j-1.2.14.jar
/log4j/log4j/1.2.14
查看log4j所有版本文件
junit-4.7.jar
/junit/junit/4.7
查看junit所有版本文件
commons-io-1.4.jar
/commons-io/commons-io/1.4
查看commons-io所有版本文件
mockito-core-1.7.jar
/org.mockito/mockito-core/1.7
查看mockito-core所有版本文件
|