|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>org.opensextant</groupId> |
7 | 7 | <artifactId>opensextant-xponents</artifactId> |
8 | | - <version>3.5.8</version> |
| 8 | + <version>3.5.9</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 | <name>OpenSextant Xponents</name> |
11 | 11 | <description>An information extraction toolkit focused on geography and temporal entities</description> |
|
50 | 50 | <properties> |
51 | 51 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
52 | 52 | <solr.version>7.7.3</solr.version> |
53 | | - <slf4j.version>1.7.32</slf4j.version> |
54 | | - <log4j.version>2.17.1</log4j.version> |
| 53 | + <slf4j.version>1.7.36</slf4j.version> |
| 54 | + <log4j.version>2.17.2</log4j.version> |
55 | 55 | <restlet.version>2.4.3</restlet.version> |
| 56 | + <xponents.version>3.5.9</xponents.version> |
56 | 57 | </properties> |
57 | 58 | <!-- OSS Sonatype instructions: list repositories --> |
58 | 59 | <distributionManagement> |
|
71 | 72 | <dependency> |
72 | 73 | <groupId>commons-io</groupId> |
73 | 74 | <artifactId>commons-io</artifactId> |
74 | | - <version>2.8.0</version> |
| 75 | + <version>2.11.0</version> |
75 | 76 | </dependency> |
76 | 77 | <dependency> |
77 | 78 | <groupId>org.apache.commons</groupId> |
|
94 | 95 | <dependency> |
95 | 96 | <groupId>ch.qos.logback</groupId> |
96 | 97 | <artifactId>logback-classic</artifactId> |
97 | | - <version>1.2.10</version> |
| 98 | + <version>1.2.11</version> |
98 | 99 | <scope>test</scope> |
99 | 100 | </dependency> |
100 | 101 | </dependencies> |
101 | 102 | </dependencyManagement> |
102 | 103 | <dependencies> |
103 | 104 | <!-- BASIC LIBS --> |
104 | | - |
| 105 | + <dependency> |
| 106 | + <groupId>org.opensextant</groupId> |
| 107 | + <artifactId>opensextant-xponents-core</artifactId> |
| 108 | + <version>${xponents.version}</version> |
| 109 | + </dependency> |
105 | 110 | <dependency> |
106 | 111 | <groupId>org.apache.commons</groupId> |
107 | 112 | <artifactId>commons-lang3</artifactId> |
|
121 | 126 | <artifactId>spatial4j</artifactId> |
122 | 127 | <version>0.8</version> |
123 | 128 | </dependency> |
124 | | - <!-- JTS is unused. No change in performance or function without it. |
125 | | - <dependency> |
126 | | - <groupId>org.locationtech.jts</groupId> |
127 | | - <artifactId>jts-core</artifactId> |
128 | | - <version>1.18.3</version> |
129 | | - <scope>runtime</scope> |
130 | | - </dependency> |
131 | | - --> |
132 | 129 | <dependency> |
133 | 130 | <groupId>org.apache.httpcomponents</groupId> |
134 | 131 | <artifactId>fluent-hc</artifactId> |
|
167 | 164 | <artifactId>super-csv</artifactId> |
168 | 165 | <version>2.4.0</version> |
169 | 166 | </dependency> |
| 167 | + <!-- UTILITY AND LOGGING --> |
| 168 | + <dependency> |
| 169 | + <groupId>org.apache.logging.log4j</groupId> |
| 170 | + <artifactId>log4j-1.2-api</artifactId> |
| 171 | + <version>${log4j.version}</version> |
| 172 | + <scope>runtime</scope> |
| 173 | + </dependency> |
| 174 | + <dependency> |
| 175 | + <groupId>org.apache.logging.log4j</groupId> |
| 176 | + <artifactId>log4j-api</artifactId> |
| 177 | + <version>${log4j.version}</version> |
| 178 | + <scope>runtime</scope> |
| 179 | + </dependency> |
| 180 | + <dependency> |
| 181 | + <groupId>org.apache.logging.log4j</groupId> |
| 182 | + <artifactId>log4j-core</artifactId> |
| 183 | + <version>${log4j.version}</version> |
| 184 | + <scope>runtime</scope> |
| 185 | + </dependency> |
| 186 | + <dependency> |
| 187 | + <groupId>org.slf4j</groupId> |
| 188 | + <artifactId>slf4j-api</artifactId> |
| 189 | + </dependency> |
| 190 | + <dependency> |
| 191 | + <groupId>ch.qos.logback</groupId> |
| 192 | + <artifactId>logback-classic</artifactId> |
| 193 | + </dependency> |
| 194 | + <dependency> |
| 195 | + <groupId>gnu.getopt</groupId> |
| 196 | + <artifactId>java-getopt</artifactId> |
| 197 | + <version>1.0.13</version> |
| 198 | + <scope>runtime</scope> |
| 199 | + <optional>true</optional> |
| 200 | + </dependency> |
| 201 | + <dependency> |
| 202 | + <groupId>junit</groupId> |
| 203 | + <artifactId>junit</artifactId> |
| 204 | + <scope>test</scope> |
| 205 | + </dependency> |
| 206 | + <dependency> |
| 207 | + <groupId>commons-cli</groupId> |
| 208 | + <artifactId>commons-cli</artifactId> |
| 209 | + <version>1.4</version> |
| 210 | + <scope>test</scope> |
| 211 | + </dependency> |
| 212 | + <!-- REST support --> |
| 213 | + <dependency> |
| 214 | + <groupId>org.restlet.jse</groupId> |
| 215 | + <artifactId>org.restlet</artifactId> |
| 216 | + <version>${restlet.version}</version> |
| 217 | + </dependency> |
| 218 | + <dependency> |
| 219 | + <groupId>org.restlet.jse</groupId> |
| 220 | + <artifactId>org.restlet.ext.simple</artifactId> |
| 221 | + <version>${restlet.version}</version> |
| 222 | + </dependency> |
| 223 | + <dependency> |
| 224 | + <groupId>org.restlet.jse</groupId> |
| 225 | + <artifactId>org.restlet.ext.json</artifactId> |
| 226 | + <version>${restlet.version}</version> |
| 227 | + </dependency> |
| 228 | + <dependency> |
| 229 | + <groupId>org.json</groupId> |
| 230 | + <artifactId>json</artifactId> |
| 231 | + <version>20190722</version> |
| 232 | + </dependency> |
| 233 | + |
| 234 | + <!-- JSON serialization and metadata transforms --> |
| 235 | + <dependency> |
| 236 | + <groupId>org.jodd</groupId> |
| 237 | + <artifactId>jodd-json</artifactId> |
| 238 | + <version>5.1.5</version> |
| 239 | + </dependency> |
| 240 | + <dependency> |
| 241 | + <groupId>org.apache.lucene</groupId> |
| 242 | + <artifactId>lucene-analyzers-common</artifactId> |
| 243 | + <version>${solr.version}</version> |
| 244 | + </dependency> |
| 245 | + <dependency> |
| 246 | + <groupId>org.apache.lucene</groupId> |
| 247 | + <artifactId>lucene-core</artifactId> |
| 248 | + <version>${solr.version}</version> |
| 249 | + </dependency> |
| 250 | + |
170 | 251 | <!-- SOLR 7.x LIBS --> |
171 | 252 | <dependency> |
172 | 253 | <groupId>org.apache.solr</groupId> |
|
313 | 394 | </exclusion> |
314 | 395 | </exclusions> |
315 | 396 | </dependency> |
316 | | - <!-- UTILITY AND LOGGING --> |
317 | | - <dependency> |
318 | | - <groupId>org.apache.logging.log4j</groupId> |
319 | | - <artifactId>log4j-1.2-api</artifactId> |
320 | | - <version>${log4j.version}</version> |
321 | | - <scope>runtime</scope> |
322 | | - </dependency> |
323 | | - <dependency> |
324 | | - <groupId>org.apache.logging.log4j</groupId> |
325 | | - <artifactId>log4j-api</artifactId> |
326 | | - <version>${log4j.version}</version> |
327 | | - <scope>runtime</scope> |
328 | | - </dependency> |
329 | | - <dependency> |
330 | | - <groupId>org.apache.logging.log4j</groupId> |
331 | | - <artifactId>log4j-core</artifactId> |
332 | | - <version>${log4j.version}</version> |
333 | | - <scope>runtime</scope> |
334 | | - </dependency> |
335 | | - <dependency> |
336 | | - <groupId>org.slf4j</groupId> |
337 | | - <artifactId>slf4j-api</artifactId> |
338 | | - </dependency> |
339 | | - <dependency> |
340 | | - <groupId>ch.qos.logback</groupId> |
341 | | - <artifactId>logback-classic</artifactId> |
342 | | - </dependency> |
343 | | - <dependency> |
344 | | - <groupId>gnu.getopt</groupId> |
345 | | - <artifactId>java-getopt</artifactId> |
346 | | - <version>1.0.13</version> |
347 | | - <scope>runtime</scope> |
348 | | - <optional>true</optional> |
349 | | - </dependency> |
350 | | - <dependency> |
351 | | - <groupId>junit</groupId> |
352 | | - <artifactId>junit</artifactId> |
353 | | - <scope>test</scope> |
354 | | - </dependency> |
355 | | - <dependency> |
356 | | - <groupId>commons-cli</groupId> |
357 | | - <artifactId>commons-cli</artifactId> |
358 | | - <version>1.4</version> |
359 | | - <scope>test</scope> |
360 | | - </dependency> |
361 | | - <!-- REST support --> |
362 | | - <dependency> |
363 | | - <groupId>org.restlet.jse</groupId> |
364 | | - <artifactId>org.restlet</artifactId> |
365 | | - <version>${restlet.version}</version> |
366 | | - </dependency> |
367 | | - <dependency> |
368 | | - <groupId>org.restlet.jse</groupId> |
369 | | - <artifactId>org.restlet.ext.simple</artifactId> |
370 | | - <version>${restlet.version}</version> |
371 | | - </dependency> |
372 | | - <dependency> |
373 | | - <groupId>org.restlet.jse</groupId> |
374 | | - <artifactId>org.restlet.ext.json</artifactId> |
375 | | - <version>${restlet.version}</version> |
376 | | - </dependency> |
377 | | - <dependency> |
378 | | - <groupId>org.json</groupId> |
379 | | - <artifactId>json</artifactId> |
380 | | - <version>20190722</version> |
381 | | - </dependency> |
382 | 397 |
|
383 | | - <!-- JSON serialization and metadata transforms --> |
384 | | - <dependency> |
385 | | - <groupId>org.jodd</groupId> |
386 | | - <artifactId>jodd-json</artifactId> |
387 | | - <version>5.1.5</version> |
388 | | - </dependency> |
389 | | - <dependency> |
390 | | - <groupId>org.apache.lucene</groupId> |
391 | | - <artifactId>lucene-analyzers-common</artifactId> |
392 | | - <version>${solr.version}</version> |
393 | | - </dependency> |
394 | | - <dependency> |
395 | | - <groupId>org.apache.lucene</groupId> |
396 | | - <artifactId>lucene-core</artifactId> |
397 | | - <version>${solr.version}</version> |
398 | | - </dependency> |
399 | | - <dependency> |
400 | | - <groupId>org.opensextant</groupId> |
401 | | - <artifactId>opensextant-xponents-core</artifactId> |
402 | | - <version>3.5.8</version> |
403 | | - </dependency> |
404 | 398 | </dependencies> |
405 | 399 | <build> |
406 | 400 | <!-- <directory>target</directory> --> |
|
0 commit comments