|
| 1 | +<!-- |
| 2 | + ~ Copyright (C) 2016-2020, Stichting Mapcode Foundation (http://www.mapcode.com) |
| 3 | + ~ |
| 4 | + ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + ~ you may not use this file except in compliance with the License. |
| 6 | + ~ You may obtain a copy of the License at |
| 7 | + ~ |
| 8 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + ~ |
| 10 | + ~ Unless required by applicable law or agreed to in writing, software |
| 11 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + ~ See the License for the specific language governing permissions and |
| 14 | + ~ limitations under the License. |
| 15 | + --> |
| 16 | + |
1 | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
2 | 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
|
8 | 24 | <artifactId>mapcode</artifactId> |
9 | 25 |
|
10 | 26 | <packaging>jar</packaging> |
11 | | - <version>2.4.14-SNAPSHOT</version> |
| 27 | + <version>2.4.14</version> |
12 | 28 |
|
13 | 29 | <name>Mapcode Java Library</name> |
14 | 30 | <description> |
|
36 | 52 | <name>Rijn Buve</name> |
37 | 53 | <organization>Mapcode Foundation</organization> |
38 | 54 | <roles> |
39 | | - <role>Managing Director, main contributor</role> |
| 55 | + <role>Developer</role> |
40 | 56 | </roles> |
41 | 57 | </developer> |
42 | 58 |
|
43 | 59 | <developer> |
44 | 60 | <id>matthew</id> |
45 | 61 | <name>Matthew Lowden</name> |
46 | 62 | <roles> |
47 | | - <role>Original Java port</role> |
| 63 | + <role>Developer (original port from C++)</role> |
48 | 64 | </roles> |
49 | 65 | </developer> |
50 | 66 | </developers> |
|
73 | 89 |
|
74 | 90 | <!-- Modules. --> |
75 | 91 | <coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version> |
76 | | - <jacoco-maven-plugin.version>0.8.4</jacoco-maven-plugin.version> |
| 92 | + <jacoco-maven-plugin.version>0.8.5</jacoco-maven-plugin.version> |
77 | 93 | <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> |
78 | | - <maven-javadoc-plugin.version>3.1.0</maven-javadoc-plugin.version> |
| 94 | + <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> |
79 | 95 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
80 | 96 | <maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version> |
81 | | - <maven-site-plugin.version>3.7.1</maven-site-plugin.version> |
82 | | - <maven-source-plugin.version>3.1.0</maven-source-plugin.version> |
| 97 | + <maven-site-plugin.version>3.9.0</maven-site-plugin.version> |
| 98 | + <maven-source-plugin.version>3.2.1</maven-source-plugin.version> |
83 | 99 | <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> |
84 | 100 | <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> |
85 | 101 |
|
86 | 102 | <!-- libraries. --> |
87 | 103 | <gson.version>2.8.6</gson.version> |
88 | 104 | <jsr305.version>3.0.2</jsr305.version> |
89 | | - <junit.version>4.12</junit.version> |
| 105 | + <junit.version>4.13</junit.version> |
90 | 106 | <log4j.version>1.2.17</log4j.version> |
91 | | - <slf4j.version>1.7.26</slf4j.version> |
| 107 | + <slf4j.version>1.7.30</slf4j.version> |
92 | 108 | </properties> |
93 | 109 |
|
94 | 110 | <distributionManagement> |
|
282 | 298 | <scope>test</scope> |
283 | 299 | </dependency> |
284 | 300 |
|
285 | | - <dependency> |
286 | | - <groupId>org.slf4j</groupId> |
287 | | - <artifactId>slf4j-api</artifactId> |
288 | | - <version>${slf4j.version}</version> |
289 | | - </dependency> |
290 | | - |
291 | 301 | <dependency> |
292 | 302 | <groupId>log4j</groupId> |
293 | 303 | <artifactId>log4j</artifactId> |
294 | 304 | <version>${log4j.version}</version> |
295 | 305 | </dependency> |
296 | 306 |
|
| 307 | + <dependency> |
| 308 | + <groupId>org.slf4j</groupId> |
| 309 | + <artifactId>slf4j-api</artifactId> |
| 310 | + <version>${slf4j.version}</version> |
| 311 | + </dependency> |
| 312 | + |
297 | 313 | <dependency> |
298 | 314 | <groupId>org.slf4j</groupId> |
299 | 315 | <artifactId>slf4j-log4j12</artifactId> |
|
0 commit comments