diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ae29ca3..daea35ff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
CHANGELOG
=========
-3.0.0
+3.0.0 (2022-12-12)
------------------
* This library is now a Java module.
diff --git a/README.md b/README.md
index cd0348e0..67420c7b 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ To do this, add the dependency to your pom.xml:
com.maxmind.minfraud
minfraud
- 2.2.0
+ 3.0.0
```
@@ -29,7 +29,7 @@ repositories {
mavenCentral()
}
dependencies {
- compile 'com.maxmind.minfraud:minfraud:2.2.0'
+ compile 'com.maxmind.minfraud:minfraud:3.0.0'
}
```
diff --git a/pom.xml b/pom.xml
index 6aa5f908..ed9c6ddb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,11 +1,10 @@
-
+
4.0.0
com.maxmind.minfraud
minfraud
- 2.2.1-SNAPSHOT
+ 3.0.1-SNAPSHOT
MaxMind minFraud Score, Insights, Factors and Report Transaction API
MaxMind minFraud Score, Insights, Factors and Report Transaction API
http://dev.maxmind.com/minfraud
@@ -40,27 +39,27 @@
com.fasterxml.jackson.core
jackson-core
- 2.13.4
+ 2.14.1
com.fasterxml.jackson.core
jackson-databind
- 2.13.4.2
+ 2.14.1
com.fasterxml.jackson.core
jackson-annotations
- 2.13.4
+ 2.14.1
com.fasterxml.jackson.datatype
jackson-datatype-jsr310
- 2.14.0
+ 2.14.1
com.maxmind.geoip2
geoip2
- 3.0.2
+ 4.0.0
commons-validator
@@ -88,7 +87,7 @@
com.fasterxml.jackson.jr
jackson-jr-objects
- 2.13.4
+ 2.14.1
test
@@ -192,14 +191,6 @@
1.11
-
- org.eluder.coveralls
- coveralls-maven-plugin
- 4.3.0
-
- travis-ci
-
-
org.apache.maven.plugins
maven-jar-plugin
@@ -228,16 +219,6 @@
-
- org.codehaus.mojo
- cobertura-maven-plugin
- 2.7
-
- xml
- 256m
-
-
-
org.codehaus.mojo
versions-maven-plugin
diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java
index 38956569..adbd2de8 100644
--- a/src/main/java/module-info.java
+++ b/src/main/java/module-info.java
@@ -1,11 +1,11 @@
-module com.maxmind.db {
+module com.maxmind.minfraud {
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;
requires com.fasterxml.jackson.datatype.jsr310;
- requires java.net.http;
+ requires com.maxmind.geoip2;
requires commons.validator;
- requires geoip2;
+ requires java.net.http;
exports com.maxmind.minfraud;
exports com.maxmind.minfraud.exception;