| 组织ID: |
com.github.phantomthief |
| 项目ID: |
zkconfig-resources |
| 版本: |
1.1.28 |
| 最后修改时间: |
2019-03-29 23:21:14 |
| 包类型: |
jar |
| 标题: |
zkconfig-resources |
| 描述: |
A ZooKeeper based configuration resources holder |
| 相关URL: |
https://github.com/PhantomThief/zkconfig-resources |
| 大小: |
39.60KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.github.phantomthief</groupId>
<artifactId>zkconfig-resources</artifactId>
<version>1.1.28</version>
</dependency>
|
| Gradle引入代码: |
com.github.phantomthief:zkconfig-resources:1.1.28
|
| 下载Jar包: |
|
| POM文件内容: |
<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.phantomthief</groupId>
<artifactId>zkconfig-resources</artifactId>
<version>1.1.28</version>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<name>zkconfig-resources</name>
<description>A ZooKeeper based configuration resources holder</description>
<url>https://github.com/PhantomThief/zkconfig-resources</url>
<developers>
<developer>
<name>w.vela</name>
</developer>
</developers>
<licenses>
<license>
<name>The Artistic License 2.0</name>
<url>http://www.perlfoundation.org/artistic_license_2_0</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/PhantomThief/zkconfig-resources.git</connection>
<url>https://github.com/PhantomThief/zkconfig-resources.git</url>
<developerConnection>scm:git:https://github.com/PhantomThief/zkconfig-resources.git
</developerConnection>
</scm>
<properties>
<guava.version>21.0</guava.version>
<curator.version>4.0.0</curator.version>
<junit-jupiter.version>5.0.2</junit-jupiter.version>
<junit-platform.version>1.0.2</junit-platform.version>
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
<kotlin.compiler.incremental>false</kotlin.compiler.incremental>
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
<kotlin.version>1.2.51</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.phantomthief</groupId>
<artifactId>more-lambdas</artifactId>
<version>0.1.8</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.22</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>[${curator.version},)</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.1</version>
<optional>true</optional><!-- needed only for annotations -->
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-test</artifactId>
<version>${curator.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
<version>${kotlin.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<configuration>
<nowarn>true</nowarn> <!-- Disable warnings -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<fork>true</fork>
<verbose>true</verbose>
<encoding>UTF-8</encoding>
<optimize>true</optimize>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
</configuration>
<executions>
<!-- Replacing default-compile as it is treated specially by maven -->
<execution>
<id>default-compile</id>
<phase>none</phase>
</execution>
<!-- Replacing default-testCompile as it is treated specially by maven -->
<execution>
<id>default-testCompile</id>
<phase>none</phase>
</execution>
<execution>
<id>java-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>java-test-compile</id>
<phase>test-compile</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${junit-platform.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit-jupiter.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.github.phantomthief.zookeeper.ZkNode.class
com.github.phantomthief.zookeeper.util.ZkUtils.class
com.github.phantomthief.zookeeper.util.EphemeralNode.class
com.github.phantomthief.zookeeper.util.ZkUtils$KeepEphemeralListener.class
com.github.phantomthief.zookeeper.GenericZkBasedNodeBuilder.class
com.github.phantomthief.zookeeper.ZkBasedTreeNodeResource$Builder.class
com.github.phantomthief.zookeeper.ZkBasedNodeResource$Builder.class
com.github.phantomthief.zookeeper.ZkBasedTreeNodeResource$1.class
com.github.phantomthief.zookeeper.ZkBasedNodeResource.class
com.github.phantomthief.zookeeper.ZkBasedTreeNodeResource.class
com.github.phantomthief.zookeeper.ZkBasedNodeResource$1.class
META-INF/maven/com.github.phantomthief/zkconfig-resources/pom.xml
META-INF/maven/com.github.phantomthief/zkconfig-resources/pom.properties
|
| 依赖Jar: |
more-lambdas-0.1.8.jar
/com.github.phantomthief/more-lambdas/0.1.8
查看more-lambdas所有版本文件
slf4j-api-1.7.22.jar
/org.slf4j/slf4j-api/1.7.22
查看slf4j-api所有版本文件
curator-recipes-[${curator.version},).jar
/org.apache.curator/curator-recipes/[${curator.version},)
查看curator-recipes所有版本文件
guava-${guava.version}.jar
/com.google.guava/guava/${guava.version}
查看guava所有版本文件
commons-lang3-3.4.jar
/org.apache.commons/commons-lang3/3.4
查看commons-lang3所有版本文件
jsr305-3.0.1.jar
/com.google.code.findbugs/jsr305/3.0.1
查看jsr305所有版本文件
curator-test-${curator.version}.jar
/org.apache.curator/curator-test/${curator.version}
查看curator-test所有版本文件
junit-jupiter-api-${junit-jupiter.version}.jar
/org.junit.jupiter/junit-jupiter-api/${junit-jupiter.version}
查看junit-jupiter-api所有版本文件
jackson-databind-2.9.7.jar
/com.fasterxml.jackson.core/jackson-databind/2.9.7
查看jackson-databind所有版本文件
logback-classic-1.1.8.jar
/ch.qos.logback/logback-classic/1.1.8
查看logback-classic所有版本文件
kotlin-reflect-${kotlin.version}.jar
/org.jetbrains.kotlin/kotlin-reflect/${kotlin.version}
查看kotlin-reflect所有版本文件
|