Skip to content

Commit f12d4d9

Browse files
committed
Updated deps and copyright
1 parent 27784d9 commit f12d4d9

36 files changed

+44
-43
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176

177177
END OF TERMS AND CONDITIONS
178178

179-
Copyright 2018, Stichting Mapcode Foundation
179+
Copyright 2019, Stichting Mapcode Foundation
180180

181181
Licensed under the Apache License, Version 2.0 (the "License");
182182
you may not use this file except in compliance with the License.

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ MAPCODE JAVA LIBRARY
55
Original C library created by Pieter Geelen. Work on Java version
66
of the Mapcode library by Rijn Buve (original port by Matthew Lowden).
77

8-
Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)
8+
Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Release](https://img.shields.io/github/release/mapcode-foundation/mapcode-java.svg?maxAge=3600)](https://github.com/mapcode-foundation/mapcode-java/releases)
88
[![Maven Central](https://img.shields.io/maven-central/v/com.mapcode/mapcode.svg?maxAge=3600)](https://maven-badges.herokuapp.com/maven-central/com.mapcode/mapcode)
99

10-
**Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)**
10+
**Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)**
1111

1212
This Java project contains a library to encode latitude/longitude pairs to mapcodes
1313
and to decode mapcodes back to latitude/longitude pairs.
@@ -480,6 +480,10 @@ Normally, one of our developers should be able to comment on them and fix.
480480

481481
These are the release notes for the Java library for mapcodes.
482482

483+
### 2.4.8
484+
485+
* Updated dependencies for security patches.
486+
483487
### 2.4.7
484488

485489
* Added `fromCountryISO/2/3` methods to get a `Territory` value from a 2- or 3-character ISO 3166 string.

pom.xml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>mapcode</artifactId>
99

1010
<packaging>jar</packaging>
11-
<version>2.4.7</version>
11+
<version>2.4.8</version>
1212

1313
<name>Mapcode Java Library</name>
1414
<description>
@@ -73,18 +73,18 @@
7373

7474
<!-- Modules. -->
7575
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
76-
<jacoco-maven-plugin.version>0.8.1</jacoco-maven-plugin.version>
77-
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
76+
<jacoco-maven-plugin.version>0.8.2</jacoco-maven-plugin.version>
77+
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
7878
<maven-javadoc-plugin.version>3.0.0</maven-javadoc-plugin.version>
7979
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
80-
<maven-project-info-reports-plugin.version>2.9</maven-project-info-reports-plugin.version>
80+
<maven-project-info-reports-plugin.version>3.0.0</maven-project-info-reports-plugin.version>
8181
<maven-site-plugin.version>3.7.1</maven-site-plugin.version>
8282
<maven-source-plugin.version>3.0.1</maven-source-plugin.version>
8383
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
8484
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
8585

8686
<!-- libraries. -->
87-
<gson.version>2.8.4</gson.version>
87+
<gson.version>2.8.5</gson.version>
8888
<jsr305.version>3.0.2</jsr305.version>
8989
<junit.version>4.12</junit.version>
9090
<log4j.version>1.2.17</log4j.version>
@@ -245,9 +245,6 @@
245245
<groupId>org.apache.maven.plugins</groupId>
246246
<artifactId>maven-project-info-reports-plugin</artifactId>
247247
<version>${maven-project-info-reports-plugin.version}</version>
248-
<configuration>
249-
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
250-
</configuration>
251248
</plugin>
252249

253250
<!-- JavaDoc reports. -->

src/main/java/com/mapcode/Alphabet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)
2+
* Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/mapcode/Boundary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)
2+
* Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/mapcode/CheckArgs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)
2+
* Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/mapcode/Common.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)
2+
* Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/mapcode/Data.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)
2+
* Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/com/mapcode/DataModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (C) 2014-2017, Stichting Mapcode Foundation (http://www.mapcode.com)
2+
* Copyright (C) 2014-2019, Stichting Mapcode Foundation (http://www.mapcode.com)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)