File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4- 4.0.0
4+ 4.0.0 (2022-12-12)
55------------------
66
77* This library is now a Java module.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ To do this, add the dependency to your pom.xml:
1717 <dependency >
1818 <groupId >com.maxmind.geoip2</groupId >
1919 <artifactId >geoip2</artifactId >
20- <version >3 .0.2 </version >
20+ <version >4 .0.0 </version >
2121 </dependency >
2222```
2323
@@ -30,7 +30,7 @@ repositories {
3030 mavenCentral()
3131}
3232dependencies {
33- compile 'com.maxmind.geoip2:geoip2:3 .0.2 '
33+ compile 'com.maxmind.geoip2:geoip2:4 .0.0 '
3434}
3535```
3636
Original file line number Diff line number Diff line change 11<?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"
3- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
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" >
43 <modelVersion >4.0.0</modelVersion >
54 <groupId >com.maxmind.geoip2</groupId >
65 <artifactId >geoip2</artifactId >
7- <version >3 .0.3 -SNAPSHOT</version >
6+ <version >4 .0.1 -SNAPSHOT</version >
87 <packaging >jar</packaging >
98 <name >MaxMind GeoIP2 API</name >
109 <description >GeoIP2 webservice client and database reader</description >
4039 <dependency >
4140 <groupId >com.maxmind.db</groupId >
4241 <artifactId >maxmind-db</artifactId >
43- <version >2.1 .0</version >
42+ <version >3.0 .0</version >
4443 </dependency >
4544 <dependency >
4645 <groupId >com.fasterxml.jackson.core</groupId >
Original file line number Diff line number Diff line change 1- module com .maxmind .db {
1+ @ SuppressWarnings ("module" ) // suppress terminal digit warning
2+ module com .maxmind .geoip2 {
23 requires com .fasterxml .jackson .annotation ;
34 requires com .fasterxml .jackson .databind ;
4- requires maxmind .db ;
5+ requires com . maxmind .db ;
56 requires java .net .http ;
67
78 exports com .maxmind .geoip2 ;
You can’t perform that action at this time.
0 commit comments