| 组织ID: |
de.malkusch.whois-server-list |
| 项目ID: |
public-suffix-list |
| 版本: |
2.1.0 |
| 最后修改时间: |
2018-07-30 15:23:39 |
| 包类型: |
jar |
| 标题: |
Public Suffix List |
| 描述: |
Public Suffix List API |
| 大小: |
83.99KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>de.malkusch.whois-server-list</groupId>
<artifactId>public-suffix-list</artifactId>
<version>2.1.0</version>
</dependency>
|
| Gradle引入代码: |
de.malkusch.whois-server-list:public-suffix-list:2.1.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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.malkusch.whois-server-list</groupId>
<artifactId>public-suffix-list</artifactId>
<version>2.1.0</version>
<name>Public Suffix List</name>
<description>Public Suffix List API</description>
<parent>
<groupId>de.malkusch.parent</groupId>
<artifactId>oss-parent</artifactId>
<version>1.10</version>
</parent>
<url>https://github.com/whois-server-list/${project.artifactId}</url>
<scm>
<connection>scm:git:git://github.com/whois-server-list/${project.artifactId}.git</connection>
<developerConnection>scm:git:git@github.com:whois-server-list/${project.artifactId}.git</developerConnection>
<url>https://github.com/whois-server-list/${project.artifactId}</url>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/whois-server-list/${project.artifactId}/issues</url>
</issueManagement>
<distributionManagement>
<site>
<id>github</id>
<name>Github</name>
<url>http://whois-server-list.github.io/${project.artifactId}/</url>
</site>
</distributionManagement>
<dependencies>
<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.0</version>
</dependency>
<dependency>
<groupId>com.carrotsearch</groupId>
<artifactId>junit-benchmarks</artifactId>
<version>0.7.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0-alpha-2</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>read-project-properties</goal>
</goals>
<configuration>
<files>
<file>src/main/resources/psl.properties</file>
</files>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>package-psl</id>
<phase>generate-resources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>${psl.url}</url>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<outputFileName>${psl.file}</outputFileName>
</configuration>
</execution>
<execution>
<id>test-psl-cases</id>
<phase>generate-test-sources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>https://raw.githubusercontent.com/publicsuffix/list/master/tests/test_psl.txt</url>
<outputDirectory>${project.build.directory}/test-classes</outputDirectory>
<outputFileName>checkPublicSuffix.txt</outputFileName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
effective_tld_names.dat
psl.properties
de.malkusch.whoisServerList.publicSuffixList.rule.RuleMatcher.class
de.malkusch.whoisServerList.publicSuffixList.rule.Rule.class
de.malkusch.whoisServerList.publicSuffixList.rule.RuleComparator.class
de.malkusch.whoisServerList.publicSuffixList.rule.LabelMatcher.class
de.malkusch.whoisServerList.publicSuffixList.rule.RuleFactory.class
de.malkusch.whoisServerList.publicSuffixList.index.tree.MutableNode.class
de.malkusch.whoisServerList.publicSuffixList.index.tree.Node.class
de.malkusch.whoisServerList.publicSuffixList.index.tree.TreeIndexFactory.class
de.malkusch.whoisServerList.publicSuffixList.index.tree.ImmutableNode.class
de.malkusch.whoisServerList.publicSuffixList.index.tree.TreeIndex.class
de.malkusch.whoisServerList.publicSuffixList.index.Index.class
de.malkusch.whoisServerList.publicSuffixList.index.array.ArrayIndex.class
de.malkusch.whoisServerList.publicSuffixList.index.array.ArrayIndexFactory.class
de.malkusch.whoisServerList.publicSuffixList.index.IndexFactory.class
de.malkusch.whoisServerList.publicSuffixList.util.DomainUtil.class
de.malkusch.whoisServerList.publicSuffixList.util.PunycodeAutoDecoder.class
de.malkusch.whoisServerList.publicSuffixList.PublicSuffixList.class
de.malkusch.whoisServerList.publicSuffixList.PublicSuffixListFactory.class
de.malkusch.whoisServerList.publicSuffixList.parser.Parser.class
META-INF/maven/de.malkusch.whois-server-list/public-suffix-list/pom.xml
META-INF/maven/de.malkusch.whois-server-list/public-suffix-list/pom.properties
|
| 依赖Jar: |
commons-lang3-3.4.jar
/org.apache.commons/commons-lang3/3.4
查看commons-lang3所有版本文件
jsr305-3.0.0.jar
/com.google.code.findbugs/jsr305/3.0.0
查看jsr305所有版本文件
junit-benchmarks-0.7.2.jar
/com.carrotsearch/junit-benchmarks/0.7.2
查看junit-benchmarks所有版本文件
|