dnscontrol
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.openpojo</groupId> <artifactId>dnscontrol</artifactId> <version>0.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2018-2018 Osman Shoukry ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express ~ or implied. ~ ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>9</version> </parent> <groupId>com.openpojo</groupId> <artifactId>dnscontrol</artifactId> <version>0.0.8</version> <name>${project.artifactId}</name> <description>This project was born out of a need to have more finer grain control over Java's DNS subsystem.</description> <url>http://dnscontrol.openpojo.com</url> <inceptionYear>2018</inceptionYear> <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> <name>Osman Shoukry</name> <email>oshoukry at openpojo dot com</email> <roles> <role>Maintainer</role> <role>Developer</role> </roles> <timezone>-8</timezone> </developer> </developers> <scm> <connection>scm:git:git://github.com/openpojo/dnscontrol.git</connection> <developerConnection>scm:git:git@github.com:openpojo/dnscontrol.git</developerConnection> <url>https://github.com/openpojo/dnscontrol</url> </scm> <properties> <coveralls-maven-plugin.version>3.0.1</coveralls-maven-plugin.version> <dnsjava.version>2.1.8</dnsjava.version> <hamcrest-all.version>1.3</hamcrest-all.version> <jacoco-maven-plugin.version>0.8.1</jacoco-maven-plugin.version> <java.version>1.7</java.version> <junit.version>4.12</junit.version> <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version> <maven-deploy-plugin.version>2.8</maven-deploy-plugin.version> <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> <maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version> <maven-release-plugin.version>2.1</maven-release-plugin.version> <maven-source-plugin.version>3.0.1</maven-source-plugin.version> <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> <openpojo.version>0.8.10</openpojo.version> </properties> <repositories> <repository> <id>JBOSS</id> <name>JBoss Repository</name> <url>https://repository.jboss.org/nexus/content/repositories/public/</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <arguments>-Psonatype-oss-release,dnscontrol-release</arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>${maven-jar-plugin.version}</version> <configuration> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>${coveralls-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${project.build.directory}/jacoco_default.exec</destFile> </configuration> </execution> <execution> <id>merge-all-jacoco</id> <phase>test</phase> <goals> <goal>merge</goal> </goals> <configuration> <destFile>${project.build.directory}/jacoco.exec</destFile> <fileSets> <fileSet> <directory>${project.build.directory}</directory> <includes> <include>*.exec</include> </includes> </fileSet> </fileSets> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>dnsjava</groupId> <artifactId>dnsjava</artifactId> <version>${dnsjava.version}</version> </dependency> <dependency> <groupId>com.openpojo</groupId> <artifactId>openpojo</artifactId> <version>${openpojo.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>${hamcrest-all.version}</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>sun-net-spi-name-service-skip</id> <activation> <jdk>[9,10]</jdk> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <excludes> <exclude>com.openpojo.dns.service.java.v7.**</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>dnscontrol-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> <configuration> <updateReleaseInfo>true</updateReleaseInfo> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-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>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>