whois-server-list-api
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.malkusch.whois-server-list.api.v1</groupId> <artifactId>whois-server-list-api</artifactId> <version>3.0.0</version> </dependency>
<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.api.v1</groupId> <artifactId>whois-server-list-api</artifactId> <version>3.0.0</version> <name>Whois server list API</name> <description>XML mapping for the Whois Server List.</description> <parent> <groupId>de.malkusch.parent</groupId> <artifactId>oss-parent</artifactId> <version>2.0.0</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/whois-server-list-api/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>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>src/main/resources/api.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-xsd</id> <phase>generate-resources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>${whoisserverlist.xsd.url}</url> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <outputFileName>${whoisserverlist.xsd.file}</outputFileName> </configuration> </execution> <execution> <id>package-list</id> <phase>generate-resources</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>${whoisserverlist.url}</url> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <outputFileName>${whoisserverlist.file}</outputFileName> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>