File tree Expand file tree Collapse file tree 3 files changed +25
-6
lines changed
Expand file tree Collapse file tree 3 files changed +25
-6
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
22=========
3- 2.1.0
3+
4+ 2.1.0 (2022-10-31)
45------------------
56
6- * Messages for ` DeserializationException ` have been improved and the cause
7+ * Messages for ` DeserializationException ` have been improved, and the cause
78 is included, if any. Moreover, the message provides detail about the involved
8- types, if the exeption is caused by an ` IllegalArgumentException ` .
9+ types, if the exception is caused by an ` IllegalArgumentException ` .
910
10112.0.0 (2020-10-13)
1112------------------
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ To do this, add the dependency to your pom.xml:
1616 <dependency >
1717 <groupId >com.maxmind.db</groupId >
1818 <artifactId >maxmind-db</artifactId >
19- <version >2.0 .0</version >
19+ <version >2.1 .0</version >
2020 </dependency >
2121```
2222
@@ -29,7 +29,7 @@ repositories {
2929 mavenCentral()
3030}
3131dependencies {
32- compile 'com.maxmind.db:maxmind-db:2.0 .0'
32+ compile 'com.maxmind.db:maxmind-db:2.1 .0'
3333}
3434```
3535
Original file line number Diff line number Diff line change 33 <modelVersion >4.0.0</modelVersion >
44 <groupId >com.maxmind.db</groupId >
55 <artifactId >maxmind-db</artifactId >
6- <version >2.0 .1-SNAPSHOT</version >
6+ <version >2.1 .1-SNAPSHOT</version >
77 <packaging >jar</packaging >
88 <name >MaxMind DB Reader</name >
99 <description >Reader for MaxMind DB</description >
100100 <check />
101101 </configuration >
102102 </plugin >
103+ <plugin >
104+ <groupId >org.codehaus.mojo</groupId >
105+ <artifactId >exec-maven-plugin</artifactId >
106+ <version >3.0.0</version >
107+ <executions >
108+ <execution >
109+ <phase >initialize</phase >
110+ <id >invoke build</id >
111+ <goals >
112+ <goal >exec</goal >
113+ </goals >
114+ </execution >
115+ </executions >
116+ <configuration >
117+ <executable >git</executable >
118+ <commandlineArgs >submodule update --init --recursive</commandlineArgs >
119+ </configuration >
120+ </plugin >
103121 <plugin >
104122 <groupId >org.codehaus.mojo</groupId >
105123 <artifactId >versions-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments