Skip to content

Commit ef34f05

Browse files
authored
Merge pull request #262 from maxmind/greg/release
Prepare for 3.0.0 release
2 parents 6dc0a83 + 261833f commit ef34f05

4 files changed

Lines changed: 14 additions & 33 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
CHANGELOG
22
=========
33

4-
3.0.0
4+
3.0.0 (2022-12-12)
55
------------------
66

77
* This library is now a Java module.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To do this, add the dependency to your pom.xml:
1616
<dependency>
1717
<groupId>com.maxmind.minfraud</groupId>
1818
<artifactId>minfraud</artifactId>
19-
<version>2.2.0</version>
19+
<version>3.0.0</version>
2020
</dependency>
2121
```
2222

@@ -29,7 +29,7 @@ repositories {
2929
mavenCentral()
3030
}
3131
dependencies {
32-
compile 'com.maxmind.minfraud:minfraud:2.2.0'
32+
compile 'com.maxmind.minfraud:minfraud:3.0.0'
3333
}
3434
```
3535

pom.xml

Lines changed: 8 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
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

65
<groupId>com.maxmind.minfraud</groupId>
76
<artifactId>minfraud</artifactId>
8-
<version>2.2.1-SNAPSHOT</version>
7+
<version>3.0.1-SNAPSHOT</version>
98
<name>MaxMind minFraud Score, Insights, Factors and Report Transaction API</name>
109
<description>MaxMind minFraud Score, Insights, Factors and Report Transaction API</description>
1110
<url>http://dev.maxmind.com/minfraud</url>
@@ -40,27 +39,27 @@
4039
<dependency>
4140
<groupId>com.fasterxml.jackson.core</groupId>
4241
<artifactId>jackson-core</artifactId>
43-
<version>2.13.4</version>
42+
<version>2.14.1</version>
4443
</dependency>
4544
<dependency>
4645
<groupId>com.fasterxml.jackson.core</groupId>
4746
<artifactId>jackson-databind</artifactId>
48-
<version>2.13.4.2</version>
47+
<version>2.14.1</version>
4948
</dependency>
5049
<dependency>
5150
<groupId>com.fasterxml.jackson.core</groupId>
5251
<artifactId>jackson-annotations</artifactId>
53-
<version>2.13.4</version>
52+
<version>2.14.1</version>
5453
</dependency>
5554
<dependency>
5655
<groupId>com.fasterxml.jackson.datatype</groupId>
5756
<artifactId>jackson-datatype-jsr310</artifactId>
58-
<version>2.14.0</version>
57+
<version>2.14.1</version>
5958
</dependency>
6059
<dependency>
6160
<groupId>com.maxmind.geoip2</groupId>
6261
<artifactId>geoip2</artifactId>
63-
<version>3.0.2</version>
62+
<version>4.0.0</version>
6463
</dependency>
6564
<dependency>
6665
<groupId>commons-validator</groupId>
@@ -88,7 +87,7 @@
8887
<dependency>
8988
<groupId>com.fasterxml.jackson.jr</groupId>
9089
<artifactId>jackson-jr-objects</artifactId>
91-
<version>2.13.4</version>
90+
<version>2.14.1</version>
9291
<scope>test</scope>
9392
</dependency>
9493
<dependency>
@@ -192,14 +191,6 @@
192191
<target>1.11</target>
193192
</configuration>
194193
</plugin>
195-
<plugin>
196-
<groupId>org.eluder.coveralls</groupId>
197-
<artifactId>coveralls-maven-plugin</artifactId>
198-
<version>4.3.0</version>
199-
<configuration>
200-
<serviceName>travis-ci</serviceName>
201-
</configuration>
202-
</plugin>
203194
<plugin>
204195
<groupId>org.apache.maven.plugins</groupId>
205196
<artifactId>maven-jar-plugin</artifactId>
@@ -228,16 +219,6 @@
228219
</execution>
229220
</executions>
230221
</plugin>
231-
<plugin>
232-
<groupId>org.codehaus.mojo</groupId>
233-
<artifactId>cobertura-maven-plugin</artifactId>
234-
<version>2.7</version>
235-
<configuration>
236-
<format>xml</format>
237-
<maxmem>256m</maxmem>
238-
<check/>
239-
</configuration>
240-
</plugin>
241222
<plugin>
242223
<groupId>org.codehaus.mojo</groupId>
243224
<artifactId>versions-maven-plugin</artifactId>

src/main/java/module-info.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
module com.maxmind.db {
1+
module com.maxmind.minfraud {
22
requires com.fasterxml.jackson.annotation;
33
requires com.fasterxml.jackson.core;
44
requires com.fasterxml.jackson.databind;
55
requires com.fasterxml.jackson.datatype.jsr310;
6-
requires java.net.http;
6+
requires com.maxmind.geoip2;
77
requires commons.validator;
8-
requires geoip2;
8+
requires java.net.http;
99

1010
exports com.maxmind.minfraud;
1111
exports com.maxmind.minfraud.exception;

0 commit comments

Comments
 (0)