64 lines
1.8 KiB
XML
64 lines
1.8 KiB
XML
<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>
|
|
<parent>
|
|
<groupId>org.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>7</version>
|
|
</parent>
|
|
|
|
<groupId>com.github.jnr</groupId>
|
|
<artifactId>jnr-netdb</artifactId>
|
|
<packaging>jar</packaging>
|
|
<version>1.1.6</version>
|
|
<name>jnr-netdb</name>
|
|
<description>Lookup TCP and UDP services from java</description>
|
|
<url>http://github.com/jnr/jnr-netdb</url>
|
|
|
|
<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>
|
|
|
|
<scm>
|
|
<connection>scm:git:git@github.com:jnr/jnr-netdb.git</connection>
|
|
<developerConnection>scm:git:git@github.com:jnr/jnr-netdb.git</developerConnection>
|
|
<url>git@github.com:jnr/jnr-netdb.git</url>
|
|
</scm>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>wmeissner</id>
|
|
<name>Wayne Meissner</name>
|
|
<email>wmeissner@gmail.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.5</maven.compiler.source>
|
|
<maven.compiler.target>1.5</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.11</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.jnr</groupId>
|
|
<artifactId>jnr-ffi</artifactId>
|
|
<version>2.1.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|