Skip to content

Commit c4e7999

Browse files
committed
Make library a module
1 parent 69beded commit c4e7999

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ CHANGELOG
44
4.0.0
55
------------------
66

7+
* This library is now a Java module.
78
* Added support for the GeoIP2 IP Risk database.
89

910
3.0.2 (2022-10-31)

src/main/java/module-info.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
module com.maxmind.db {
2+
requires com.fasterxml.jackson.annotation;
3+
requires com.fasterxml.jackson.databind;
4+
requires maxmind.db;
5+
requires java.net.http;
6+
7+
exports com.maxmind.geoip2;
8+
exports com.maxmind.geoip2.exception;
9+
exports com.maxmind.geoip2.model;
10+
exports com.maxmind.geoip2.record;
11+
}

0 commit comments

Comments
 (0)