| 组织ID: |
com.spotify |
| 项目ID: |
dns |
| 版本: |
3.0.0 |
| 最后修改时间: |
2019-11-01 01:38:25 |
| 包类型: |
jar |
| 标题: |
Spotify DNS wrapper library |
| 描述: |
A thin wrapper around dnsjava for some features related to SRV lookups.
|
| 相关URL: |
https://github.com/spotify/dns-java |
| 大小: |
33.44KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.spotify</groupId>
<artifactId>dns</artifactId>
<version>3.0.0</version>
</dependency>
|
| Gradle引入代码: |
com.spotify:dns:3.0.0
|
| 下载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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.spotify</groupId>
<artifactId>dns</artifactId>
<packaging>jar</packaging>
<version>3.0.0</version>
<name>Spotify DNS wrapper library</name>
<description>A thin wrapper around dnsjava for some features related to SRV lookups.
</description>
<url>https://github.com/spotify/dns-java</url>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<guava.version>18.0</guava.version>
</properties>
<scm>
<url>git@github.com:spotify/dns-java.git</url>
<connection>scm:git:git@github.com:spotify/dns-java.git</connection>
<developerConnection>scm:git:git@github.com:spotify/dns-java.git</developerConnection>
<tag>v3.0.0</tag>
</scm>
<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>petter</id>
<email>petter@spotify.com</email>
<name>Petter M氓hl茅n</name>
</developer>
<developer>
<id>rouz</id>
<name>Rouzbeh Delavari</name>
<email>rouz@spotify.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>dnsjava</groupId>
<artifactId>dnsjava</artifactId>
<version>2.1.7</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-testlib</artifactId>
<version>${guava.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>1.0-rc1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<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.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<requireUpperBoundDeps />
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.spotify.dns.AbstractChangeNotifier$ChangeNotificationImpl.class
com.spotify.dns.AbstractChangeNotifier.class
com.spotify.dns.AggregatingChangeNotifier$1.class
com.spotify.dns.AggregatingChangeNotifier.class
com.spotify.dns.AutoValue_LookupResult.class
com.spotify.dns.CachingLookupFactory$1.class
com.spotify.dns.CachingLookupFactory$2.class
com.spotify.dns.CachingLookupFactory.class
com.spotify.dns.ChangeNotifier$ChangeNotification.class
com.spotify.dns.ChangeNotifier$Listener.class
com.spotify.dns.ChangeNotifier.class
com.spotify.dns.ChangeNotifierFactory$RunnableChangeNotifier.class
com.spotify.dns.ChangeNotifierFactory.class
com.spotify.dns.ChangeNotifiers.class
com.spotify.dns.DnsException.class
com.spotify.dns.DnsSrvResolver.class
com.spotify.dns.DnsSrvResolvers$1.class
com.spotify.dns.DnsSrvResolvers$DnsSrvResolverBuilder.class
com.spotify.dns.DnsSrvResolvers.class
com.spotify.dns.DnsSrvWatcher.class
com.spotify.dns.DnsSrvWatcherFactory.class
com.spotify.dns.DnsSrvWatchers$1.class
com.spotify.dns.DnsSrvWatchers$DnsSrvWatcherBuilder$1.class
com.spotify.dns.DnsSrvWatchers$DnsSrvWatcherBuilder$2.class
com.spotify.dns.DnsSrvWatchers$DnsSrvWatcherBuilder.class
com.spotify.dns.DnsSrvWatchers.class
com.spotify.dns.ErrorHandler.class
com.spotify.dns.LookupFactory.class
com.spotify.dns.LookupResult.class
com.spotify.dns.MeteredDnsSrvResolver.class
com.spotify.dns.PollingDnsSrvWatcher.class
com.spotify.dns.RetainingDnsSrvResolver.class
com.spotify.dns.ServiceResolvingChangeNotifier.class
com.spotify.dns.SimpleLookupFactory.class
com.spotify.dns.StaticChangeNotifier.class
com.spotify.dns.statistics.DnsReporter.class
com.spotify.dns.statistics.DnsTimingContext.class
com.spotify.dns.XBillDnsSrvResolver.class
META-INF/maven/com.spotify/dns/pom.xml
META-INF/maven/com.spotify/dns/pom.properties
|
| 依赖Jar: |
dnsjava-2.1.7.jar
/dnsjava/dnsjava/2.1.7
查看dnsjava所有版本文件
guava-${guava.version}.jar
/com.google.guava/guava/${guava.version}
查看guava所有版本文件
jsr305-2.0.1.jar
/com.google.code.findbugs/jsr305/2.0.1
查看jsr305所有版本文件
slf4j-api-1.7.5.jar
/org.slf4j/slf4j-api/1.7.5
查看slf4j-api所有版本文件
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
mockito-core-1.9.5.jar
/org.mockito/mockito-core/1.9.5
查看mockito-core所有版本文件
hamcrest-library-1.3.jar
/org.hamcrest/hamcrest-library/1.3
查看hamcrest-library所有版本文件
guava-testlib-${guava.version}.jar
/com.google.guava/guava-testlib/${guava.version}
查看guava-testlib所有版本文件
slf4j-simple-1.7.5.jar
/org.slf4j/slf4j-simple/1.7.5
查看slf4j-simple所有版本文件
auto-value-1.0-rc1.jar
/com.google.auto.value/auto-value/1.0-rc1
查看auto-value所有版本文件
|