dnsjava.
dnsjava is an implementation of DNS in Java. It supports all defined record types (including the DNSSEC types), and unknown types. It can be used for queries, zone transfers, and dynamic updates. It includes a cache which can be used by clients, and a minimal implementation of a server. It supports....
Here is the list of declaration for dnsjava. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>dnsjava</groupId> <artifactId>dnsjava</artifactId> <version>2.1.1</version> </dependency>
If you think this Maven repository POM file listing for dnsjava is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD license
URL: http://www.dnsjava.org/README.
The dnsjava-2.1.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following plugins are used in the dnsjava-2.1.1.jar
The following packages are defined in the dnsjava-2.1.1.jar
org.xbill.DNS org.xbill.DNS.spi org.xbill.DNS.tests org.xbill.DNS.utils
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you 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. --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>6</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>dnsjava</groupId> <artifactId>dnsjava</artifactId> <version>2.1.1</version> <name>dnsjava</name> <description>dnsjava is an implementation of DNS in Java. It supports all defined record types (including the DNSSEC types), and unknown types. It can be used for queries, zone transfers, and dynamic updates. It includes a cache which can be used by clients, and a minimal implementation of a server. It supports TSIG authenticated messages, partial DNSSEC verification, and EDNS0. </description> <url>http://www.dnsjava.org</url> <licenses> <license> <name>BSD license</name> <url>http://www.dnsjava.org/README</url> </license> </licenses> <scm> <connection>scm:svn:https://dnsjava.svn.sourceforge.net/svnroot/dnsjava/trunk</connection> <developerConnection>scm:svn:https://dnsjava.svn.sourceforge.net/svnroot/dnsjava/trunk</developerConnection> <url>http://dnsjava.svn.sourceforge.net/viewvc/dnsjava/</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <target.jdk>1.4</target.jdk> </properties> <build> <sourceDirectory>./</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>${target.jdk}</source> <target>${target.jdk}</target> <encoding>iso8859-1</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <configuration> <excludes> <!-- As dnsjava use non-maven layout we need to exclude target --> <exclude>target/*</exclude> </excludes> </configuration> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <manifestEntries> <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package>org.xbill.DNS;uses:="org.xbill.DNS.util",org.xbill.DNS.spi;uses:="org.xbill.DNS,sun.net.spi.nameservice",org.xbill.DNS.utils,org.xbill.DNS.windows</Export-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <excludePackageNames>tests.*;doc.*;target.*</excludePackageNames> <sourcepath>./;./tests/</sourcepath> <debug>true</debug> <javadocVersion>${target.jdk}</javadocVersion> <!-- Java 14 is used to produce javadoc because of http://bugs.sun.com/bugdatabase/view_bug.do?bug%5Fid=4492654 --> <javadocExecutable>${JAVA_14_HOME}/bin/javadoc</javadocExecutable> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> </dependency> </dependencies> <repositories></repositories> <pluginRepositories></pluginRepositories> </project>