<?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.maxmind.maxminddb</groupId>
  <artifactId>maxminddb</artifactId>
  <version>0.2.0</version>
  <packaging>jar</packaging>
  <name>MaxMind DB Reader</name>
  <description>Reader for MaxMind DB</description>
  <url>http://dev.maxmind.com/</url>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <organization>
    <name>MaxMind, Inc.</name>
    <url>http://www.maxmind.com/</url>
  </organization>
  <scm>
    <url>https://github.com/maxmind/MaxMind-DB-java</url>
    <connection>scm:git:git@git.maxmind.com:MaxMind-DB-java</connection>
    <developerConnection>scm:git:git@git.maxmind.com:MaxMind-DB-java</developerConnection>
  </scm>
  <issueManagement>
    <url>https://github.com/maxmind/MaxMind-DB-java/issues</url>
    <system>GitHub</system>
  </issueManagement>
  <developers>
    <developer>
      <id>oschwald</id>
      <name>Gregory J. Oschwald</name>
      <email>goschwald@maxmind.com</email>
    </developer>
  </developers>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
      <dependency>
          <groupId>com.google.guava</groupId>
          <artifactId>guava</artifactId>
          <version>14.0.1</version>
      </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.2.0</version>
    </dependency>
  </dependencies>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.4</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>
</project>
