forked from whois-server-list/public-suffix-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
109 lines (101 loc) · 3.21 KB
/
pom.xml
File metadata and controls
109 lines (101 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<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.2.1-SNAPSHOT</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>