|
1 | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | 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"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>com.maxmind.geoip2</groupId> |
5 | | - <artifactId>geoip2</artifactId> |
6 | | - <version>0.4.2-SNAPSHOT</version> |
7 | | - <packaging>jar</packaging> |
8 | | - <name>MaxMind GeoIP2 API</name> |
9 | | - <description>API for accessing MaxMind's GeoIP2 web service</description> |
10 | | - <url>http://dev.maxmind.com/geoip/geoip2/web-services</url> |
11 | | - <licenses> |
12 | | - <license> |
13 | | - <name>Apache License, Version 2.0</name> |
14 | | - <url>http://www.apache.org/licenses/LICENSE-2.0.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/GeoIP2-java</url> |
24 | | - < connection>scm:git: [email protected]:GeoIP2-java</ connection> |
25 | | - < developerConnection>scm:git: [email protected]:GeoIP2-java</ developerConnection> |
26 | | - </scm> |
27 | | - <issueManagement> |
28 | | - <url>https://github.com/maxmind/GeoIP2-java/issues</url> |
29 | | - <system>GitHub</system> |
30 | | - </issueManagement> |
31 | | - <developers> |
32 | | - <developer> |
33 | | - <id>oschwald</id> |
34 | | - <name>Gregory J. Oschwald</name> |
35 | | - |
36 | | - </developer> |
37 | | - </developers> |
38 | | - <dependencies> |
39 | | - <dependency> |
40 | | - <groupId>com.maxmind.db</groupId> |
41 | | - <artifactId>maxminddb</artifactId> |
42 | | - <version>0.2.1-SNAPSHOT</version> |
43 | | - </dependency> |
44 | | - <dependency> |
45 | | - <groupId>junit</groupId> |
46 | | - <artifactId>junit</artifactId> |
47 | | - <version>4.11</version> |
48 | | - <scope>test</scope> |
49 | | - </dependency> |
50 | | - <dependency> |
51 | | - <groupId>com.google.http-client</groupId> |
52 | | - <artifactId>google-http-client</artifactId> |
53 | | - <version>1.17.0-rc</version> |
54 | | - </dependency> |
55 | | - <dependency> |
56 | | - <groupId>com.fasterxml.jackson.core</groupId> |
57 | | - <artifactId>jackson-databind</artifactId> |
58 | | - <version>2.2.0</version> |
59 | | - </dependency> |
60 | | - </dependencies> |
61 | | - <properties> |
62 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
63 | | - </properties> |
64 | | - <build> |
65 | | - <plugins> |
66 | | - <plugin> |
67 | | - <groupId>org.apache.maven.plugins</groupId> |
68 | | - <artifactId>maven-gpg-plugin</artifactId> |
69 | | - <version>1.4</version> |
70 | | - <executions> |
71 | | - <execution> |
72 | | - <id>sign-artifacts</id> |
73 | | - <phase>verify</phase> |
74 | | - <goals> |
75 | | - <goal>sign</goal> |
76 | | - </goals> |
77 | | - </execution> |
78 | | - </executions> |
79 | | - </plugin> |
80 | | - <plugin> |
81 | | - <groupId>org.apache.maven.plugins</groupId> |
82 | | - <artifactId>maven-compiler-plugin</artifactId> |
83 | | - <version>3.1</version> |
84 | | - <configuration> |
85 | | - <source>1.6</source> |
86 | | - <target>1.6</target> |
87 | | - </configuration> |
88 | | - </plugin> |
89 | | - <plugin> |
90 | | - <groupId>org.eluder.coveralls</groupId> |
91 | | - <artifactId>coveralls-maven-plugin</artifactId> |
92 | | - <version>1.2.0</version> |
93 | | - <configuration> |
94 | | - <serviceName>travis-ci</serviceName> |
95 | | - </configuration> |
96 | | - </plugin> |
97 | | - <plugin> |
98 | | - <groupId>org.codehaus.mojo</groupId> |
99 | | - <artifactId>cobertura-maven-plugin</artifactId> |
100 | | - <version>2.5.2</version> |
101 | | - <configuration> |
102 | | - <format>xml</format> |
103 | | - <maxmem>256m</maxmem> |
104 | | - </configuration> |
105 | | - </plugin> |
106 | | - <plugin> |
107 | | - <groupId>org.apache.maven.plugins</groupId> |
108 | | - <artifactId>maven-jar-plugin</artifactId> |
109 | | - <inherited>true</inherited> |
110 | | - <configuration> |
111 | | - <archive> |
112 | | - <manifest> |
113 | | - <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
114 | | - <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
115 | | - </manifest> |
116 | | - </archive> |
117 | | - </configuration> |
118 | | - </plugin> |
119 | | - </plugins> |
120 | | - </build> |
121 | | - <parent> |
122 | | - <groupId>org.sonatype.oss</groupId> |
123 | | - <artifactId>oss-parent</artifactId> |
124 | | - <version>7</version> |
125 | | - </parent> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.maxmind.geoip2</groupId> |
| 5 | + <artifactId>geoip2</artifactId> |
| 6 | + <version>0.4.2-SNAPSHOT</version> |
| 7 | + <packaging>jar</packaging> |
| 8 | + <name>MaxMind GeoIP2 API</name> |
| 9 | + <description>API for accessing MaxMind's GeoIP2 web service</description> |
| 10 | + <url>http://dev.maxmind.com/geoip/geoip2/web-services</url> |
| 11 | + <licenses> |
| 12 | + <license> |
| 13 | + <name>Apache License, Version 2.0</name> |
| 14 | + <url>http://www.apache.org/licenses/LICENSE-2.0.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/GeoIP2-java</url> |
| 24 | + < connection>scm:git: [email protected]:GeoIP2-java</ connection> |
| 25 | + < developerConnection>scm:git: [email protected]:GeoIP2-java</ developerConnection> |
| 26 | + </scm> |
| 27 | + <issueManagement> |
| 28 | + <url>https://github.com/maxmind/GeoIP2-java/issues</url> |
| 29 | + <system>GitHub</system> |
| 30 | + </issueManagement> |
| 31 | + <developers> |
| 32 | + <developer> |
| 33 | + <id>oschwald</id> |
| 34 | + <name>Gregory J. Oschwald</name> |
| 35 | + |
| 36 | + </developer> |
| 37 | + </developers> |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>com.maxmind.db</groupId> |
| 41 | + <artifactId>maxminddb</artifactId> |
| 42 | + <version>0.2.1-SNAPSHOT</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>junit</groupId> |
| 46 | + <artifactId>junit</artifactId> |
| 47 | + <version>4.11</version> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>com.google.http-client</groupId> |
| 52 | + <artifactId>google-http-client</artifactId> |
| 53 | + <version>1.17.0-rc</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 57 | + <artifactId>jackson-databind</artifactId> |
| 58 | + <version>2.2.0</version> |
| 59 | + </dependency> |
| 60 | + </dependencies> |
| 61 | + <properties> |
| 62 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 63 | + </properties> |
| 64 | + <build> |
| 65 | + <plugins> |
| 66 | + <plugin> |
| 67 | + <groupId>org.apache.maven.plugins</groupId> |
| 68 | + <artifactId>maven-gpg-plugin</artifactId> |
| 69 | + <version>1.4</version> |
| 70 | + <executions> |
| 71 | + <execution> |
| 72 | + <id>sign-artifacts</id> |
| 73 | + <phase>verify</phase> |
| 74 | + <goals> |
| 75 | + <goal>sign</goal> |
| 76 | + </goals> |
| 77 | + </execution> |
| 78 | + </executions> |
| 79 | + </plugin> |
| 80 | + <plugin> |
| 81 | + <groupId>org.apache.maven.plugins</groupId> |
| 82 | + <artifactId>maven-compiler-plugin</artifactId> |
| 83 | + <version>3.1</version> |
| 84 | + <configuration> |
| 85 | + <source>1.6</source> |
| 86 | + <target>1.6</target> |
| 87 | + </configuration> |
| 88 | + </plugin> |
| 89 | + <plugin> |
| 90 | + <groupId>org.eluder.coveralls</groupId> |
| 91 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 92 | + <version>1.2.0</version> |
| 93 | + <configuration> |
| 94 | + <serviceName>travis-ci</serviceName> |
| 95 | + </configuration> |
| 96 | + </plugin> |
| 97 | + <plugin> |
| 98 | + <groupId>org.codehaus.mojo</groupId> |
| 99 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 100 | + <version>2.5.2</version> |
| 101 | + <configuration> |
| 102 | + <format>xml</format> |
| 103 | + <maxmem>256m</maxmem> |
| 104 | + </configuration> |
| 105 | + </plugin> |
| 106 | + <plugin> |
| 107 | + <groupId>org.apache.maven.plugins</groupId> |
| 108 | + <artifactId>maven-jar-plugin</artifactId> |
| 109 | + <inherited>true</inherited> |
| 110 | + <configuration> |
| 111 | + <archive> |
| 112 | + <manifest> |
| 113 | + <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 114 | + <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
| 115 | + </manifest> |
| 116 | + </archive> |
| 117 | + </configuration> |
| 118 | + </plugin> |
| 119 | + </plugins> |
| 120 | + </build> |
| 121 | + <parent> |
| 122 | + <groupId>org.sonatype.oss</groupId> |
| 123 | + <artifactId>oss-parent</artifactId> |
| 124 | + <version>7</version> |
| 125 | + </parent> |
126 | 126 | </project> |
0 commit comments