monovm-whois-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.monovm</groupId>
<artifactId>monovm-whois-java</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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.monovm</groupId>
<artifactId>monovm-whois-java</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>monovm-whois-java</name>
<description>
Simple and fast domain WHOIS lookup and availability checking for Java. Queries WHOIS servers over
port 43 or RDAP/HTTP, ships a bundled registry of WHOIS endpoints for almost every TLD, and decides
availability with a configurable rule chain. Zero runtime dependencies.
</description>
<url>https://github.com/monovm/whois-java</url>
<inceptionYear>2026</inceptionYear>
<organization>
<name>MonoVM</name>
<url>https://monovm.com</url>
</organization>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>monovm</id>
<name>MonoVM</name>
<email>dev@monovm.com</email>
<organization>MonoVM</organization>
<organizationUrl>https://monovm.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/monovm/whois-java.git</connection>
<developerConnection>scm:git:ssh://git@github.com/monovm/whois-java.git</developerConnection>
<url>https://github.com/monovm/whois-java</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/monovm/whois-java/issues</url>
</issueManagement>
<properties>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<junit.version>5.10.2</junit.version>
<assertj.version>3.25.3</assertj.version>
<compiler.plugin.version>3.13.0</compiler.plugin.version>
<surefire.plugin.version>3.2.5</surefire.plugin.version>
<jar.plugin.version>3.4.1</jar.plugin.version>
<source.plugin.version>3.3.1</source.plugin.version>
<javadoc.plugin.version>3.6.3</javadoc.plugin.version>
<gpg.plugin.version>3.2.4</gpg.plugin.version>
<jacoco.plugin.version>0.8.14</jacoco.plugin.version>
<central.plugin.version>0.7.0</central.plugin.version>
<!-- Integration tests reach out to live WHOIS servers; off by default. -->
<whois.liveTests>false</whois.liveTests>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${compiler.plugin.version}</version>
<configuration>
<compilerArgs>
<arg>-Xlint:all,-serial</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
<configuration>
<!-- Tests are classpath based; the main jar is still a proper JPMS module. -->
<useModulePath>false</useModulePath>
<systemPropertyVariables>
<whois.liveTests>${whois.liveTests}</whois.liveTests>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${jar.plugin.version}</version>
<configuration>
<archive>
<manifest>
<mainClass>com.monovm.whois.cli.WhoisCli</mainClass>
</manifest>
<manifestEntries>
<Implementation-Title>${project.artifactId}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>MonoVM</Implementation-Vendor>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.plugin.version}</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<!--
Publishing profile. Requires a GPG key and a Central Portal token in settings.xml:
mvn -Prelease clean deploy
-->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${source.plugin.version}</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>${javadoc.plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<release>17</release>
<doclint>all,-missing</doclint>
<quiet>true</quiet>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${gpg.plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>${central.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>false</autoPublish>
<waitUntil>validated</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>