|
1 | 1 | <?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" 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" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | 6 | <groupId>com.maxmind.minfraud</groupId> |
|
64 | 65 | <artifactId>geoip2</artifactId> |
65 | 66 | <version>2.16.1</version> |
66 | 67 | </dependency> |
67 | | - <dependency> |
68 | | - <groupId>org.apache.httpcomponents</groupId> |
69 | | - <artifactId>httpclient</artifactId> |
70 | | - <version>4.5.13</version> |
71 | | - </dependency> |
72 | | - <dependency> |
73 | | - <!-- httpclient pulls this in. We pull in a newer version |
74 | | - because of a security issue in 1.11 --> |
75 | | - <groupId>commons-codec</groupId> |
76 | | - <artifactId>commons-codec</artifactId> |
77 | | - <version>1.15</version> |
78 | | - </dependency> |
79 | | - <!-- |
80 | | - commons-validator 1.6 depends on an older version of |
81 | | - commons-beanutils with a CVE. So add a direct dependency on the |
82 | | - commons-beanutils version that is fixed, while we wait for |
83 | | - commons-validator to be updated. |
84 | | - --> |
85 | | - <dependency> |
86 | | - <groupId>commons-beanutils</groupId> |
87 | | - <artifactId>commons-beanutils</artifactId> |
88 | | - <version>1.9.4</version> |
89 | | - </dependency> |
90 | 68 | <dependency> |
91 | 69 | <groupId>commons-validator</groupId> |
92 | 70 | <artifactId>commons-validator</artifactId> |
|
110 | 88 | <version>1.5.0</version> |
111 | 89 | <scope>test</scope> |
112 | 90 | </dependency> |
113 | | - <dependency> |
114 | | - <groupId>org.slf4j</groupId> |
115 | | - <artifactId>slf4j-simple</artifactId> |
116 | | - <version>1.7.32</version> |
117 | | - <scope>test</scope> |
118 | | - </dependency> |
119 | 91 | <dependency> |
120 | 92 | <groupId>com.fasterxml.jackson.jr</groupId> |
121 | 93 | <artifactId>jackson-jr-objects</artifactId> |
|
160 | 132 | <version>3.3.1</version> |
161 | 133 | <configuration> |
162 | 134 | <show>public</show> |
163 | | - <source>8</source> |
| 135 | + <source>11</source> |
164 | 136 | </configuration> |
165 | 137 | </plugin> |
166 | 138 | <plugin> |
|
186 | 158 | <artifactId>maven-compiler-plugin</artifactId> |
187 | 159 | <version>3.8.1</version> |
188 | 160 | <configuration> |
189 | | - <source>1.8</source> |
190 | | - <target>1.8</target> |
| 161 | + <release>11</release> |
| 162 | + <source>1.11</source> |
| 163 | + <target>1.11</target> |
191 | 164 | </configuration> |
192 | 165 | </plugin> |
193 | 166 | <plugin> |
|
233 | 206 | <configuration> |
234 | 207 | <format>xml</format> |
235 | 208 | <maxmem>256m</maxmem> |
236 | | - <check /> |
| 209 | + <check/> |
237 | 210 | </configuration> |
238 | 211 | </plugin> |
239 | 212 | <plugin> |
|
0 commit comments