We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69beded commit c4e7999Copy full SHA for c4e7999
CHANGELOG.md
@@ -4,6 +4,7 @@ CHANGELOG
4
4.0.0
5
------------------
6
7
+* This library is now a Java module.
8
* Added support for the GeoIP2 IP Risk database.
9
10
3.0.2 (2022-10-31)
src/main/java/module-info.java
@@ -0,0 +1,11 @@
1
+module com.maxmind.db {
2
+ requires com.fasterxml.jackson.annotation;
3
+ requires com.fasterxml.jackson.databind;
+ requires maxmind.db;
+ requires java.net.http;
+
+ exports com.maxmind.geoip2;
+ exports com.maxmind.geoip2.exception;
+ exports com.maxmind.geoip2.model;
+ exports com.maxmind.geoip2.record;
11
+}
0 commit comments