RIPE NCC - IP Resource.
IPv4, IPv6 and ASN definitions..
Here is the list of declaration for ipresource. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.ripe.ipresource</groupId> <artifactId>ipresource</artifactId> <version>1.45</version> </dependency>
If you think this Maven repository POM file listing for ipresource is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The BSD License
URL: https://raw.github.com/RIPE-NCC/ipresource/master/LICENSE.txt.
The following plugins are used in the ipresource-1.45.jar
The following packages are defined in the ipresource-1.45.jar
net.ripe.ipresource net.ripe.ipresource.etree
Here is the content of the POM file.
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.ripe.ipresource</groupId> <artifactId>ipresource</artifactId> <packaging>jar</packaging> <version>1.45</version> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <name>RIPE NCC - IP Resource</name> <description>IPv4, IPv6 and ASN definitions.</description> <url>https://github.com/RIPE-NCC/ipresource</url> <organization> <name>RIPE NCC, the Netherlands</name> <url>http://www.ripe.net/</url> </organization> <licenses> <license> <name>The BSD License</name> <url>https://raw.github.com/RIPE-NCC/ipresource/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/RIPE-NCC/ipresource.git</url> <connection>scm:git:git@github.com:RIPE-NCC/ipresource.git</connection> <developerConnection>scm:git:git@github.com:RIPE-NCC/ipresource.git</developerConnection> </scm> <dependencies> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> </dependency> </dependencies> </dependencyManagement> <build> <resources> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> </resource> <resource> <filtering>false</filtering> <directory>src/main/java</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.9</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> </configuration> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <version>1.9.0</version> <configuration> <strictCheck>true</strictCheck> <header>LICENSE.txt</header> <excludes> <exclude>**/*.txt</exclude> <exclude>.gitignore</exclude> <exclude>.idea/**/*.*</exclude> </excludes> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>