Skip to content

Commit d3c79ce

Browse files
committed
Updated Maven pom
1 parent 12b3fea commit d3c79ce

1 file changed

Lines changed: 81 additions & 15 deletions

File tree

pom.xml

Lines changed: 81 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,91 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<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">
33
<modelVersion>4.0.0</modelVersion>
4-
5-
<groupId>com.maxmind.geoip2</groupId>
6-
<artifactId>GeoIP2-java</artifactId>
7-
<version>1.0-SNAPSHOT</version>
4+
<groupId>com.maxmind.maxminddb</groupId>
5+
<artifactId>maxminddb</artifactId>
6+
<version>0.1.0-SNAPSHOT</version>
87
<packaging>jar</packaging>
9-
10-
<name>GeoIP2-java</name>
11-
<url>http://maven.apache.org</url>
12-
13-
<properties>
14-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
</properties>
16-
8+
<name>MaxMindDB Reader</name>
9+
<description>Reader for MaxMindDB</description>
10+
<url>http://dev.maxmind.com/</url>
11+
<licenses>
12+
<license>
13+
<name>GNU Lesser General Public License, version 2.1</name>
14+
<url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
15+
<distribution>repo</distribution>
16+
</license>
17+
</licenses>
18+
<organization>
19+
<name>MaxMind, Inc.</name>
20+
<url>http://www.maxmind.com/</url>
21+
</organization>
22+
<scm>
23+
<url>https://github.com/maxmind/MaxMind-DB-java</url>
24+
<connection>scm:git:git@git.maxmind.com:MaxMind-DB-java</connection>
25+
<developerConnection>scm:git:git@git.maxmind.com:MaxMind-DB-java</developerConnection>
26+
</scm>
27+
<issueManagement>
28+
<url>https://github.com/maxmind/MaxMind-DB-java/issues</url>
29+
<system>GitHub</system>
30+
</issueManagement>
31+
<developers>
32+
<developer>
33+
<id>oschwald</id>
34+
<name>Gregory J. Oschwald</name>
35+
<email>goschwald@maxmind.com</email>
36+
</developer>
37+
</developers>
1738
<dependencies>
1839
<dependency>
1940
<groupId>junit</groupId>
2041
<artifactId>junit</artifactId>
21-
<version>3.8.1</version>
42+
<version>4.11</version>
2243
<scope>test</scope>
2344
</dependency>
45+
<dependency>
46+
<groupId>com.google.guava</groupId>
47+
<artifactId>guava</artifactId>
48+
<version>14.0.1</version>
49+
</dependency>
50+
<dependency>
51+
<groupId>com.fasterxml.jackson.core</groupId>
52+
<artifactId>jackson-databind</artifactId>
53+
<version>2.2.0</version>
54+
</dependency>
2455
</dependencies>
56+
<properties>
57+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
58+
</properties>
59+
<build>
60+
<plugins>
61+
<plugin>
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-gpg-plugin</artifactId>
64+
<version>1.4</version>
65+
<executions>
66+
<execution>
67+
<id>sign-artifacts</id>
68+
<phase>verify</phase>
69+
<goals>
70+
<goal>sign</goal>
71+
</goals>
72+
</execution>
73+
</executions>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-compiler-plugin</artifactId>
78+
<version>3.1</version>
79+
<configuration>
80+
<source>1.7</source>
81+
<target>1.7</target>
82+
</configuration>
83+
</plugin>
84+
</plugins>
85+
</build>
86+
<parent>
87+
<groupId>org.sonatype.oss</groupId>
88+
<artifactId>oss-parent</artifactId>
89+
<version>7</version>
90+
</parent>
2591
</project>

0 commit comments

Comments
 (0)