Skip to content

Commit

Permalink
Merge pull request #340 from maxmind/greg/transitive
Browse files Browse the repository at this point in the history
Make maxmind-db a transitive dependency
  • Loading branch information
ugexe committed Mar 2, 2023
2 parents cafb4b8 + 148c507 commit 93c12a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

4.0.1
------------------

* `com.maxmind.db` is now a transitive dependency of this Java module.

4.0.0 (2022-12-12)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,6 @@ The GeoIP2 Java API uses [Semantic Versioning](https://semver.org/).

## Copyright and License ##

This software is Copyright (c) 2013-2022 by MaxMind, Inc.
This software is Copyright (c) 2013-2023 by MaxMind, Inc.

This is free software, licensed under the Apache License, Version 2.0.
2 changes: 1 addition & 1 deletion src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
module com.maxmind.geoip2 {
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.databind;
requires com.maxmind.db;
requires transitive com.maxmind.db;
requires java.net.http;

exports com.maxmind.geoip2;
Expand Down

0 comments on commit 93c12a2

Please sign in to comment.