Skip to content

Commit 969917e

Browse files
committed
Updated several maven dependencies to latest version
1 parent dd328e1 commit 969917e

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525
- Method `usingJsonLayout` in TestTheTVDBAPICallAssert.java has been renamed to `isUsingJsonLayout`.
2626
- Replace usage of anonymous classes in `QueryParametersImpl` to avoid the risk of memory leaks.
2727
- Changed names of system properties used for running integration tests.
28+
- Updated multiple maven dependencies to latest version:
29+
- _org.mockito:mockito-core_: `3.6.0` -> `3.6.28`
30+
- _com.fasterxml:jackson.core_: `2.11.3` -> `2.12.0`
2831

2932
### Removed
3033
- Method `MockServerUtil.defaultAPIHttpHeaders(boolean)` has been replaced by two more convenient ones.

pom.xml

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
<!--
2+
~ Copyright (C) 2019 - 2021 thetvdb-java-api Authors and Contributors
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+
117
<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">
218
<modelVersion>4.0.0</modelVersion>
319

@@ -236,7 +252,7 @@
236252
<dependency>
237253
<groupId>com.fasterxml.jackson.core</groupId>
238254
<artifactId>jackson-databind</artifactId>
239-
<version>2.11.3</version>
255+
<version>2.12.0</version>
240256
</dependency>
241257

242258
<!--#####################################-->
@@ -287,7 +303,7 @@
287303
<dependency>
288304
<groupId>org.mockito</groupId>
289305
<artifactId>mockito-core</artifactId>
290-
<version>3.6.0</version>
306+
<version>3.6.28</version>
291307
<scope>test</scope>
292308
</dependency>
293309

@@ -357,4 +373,4 @@
357373
</developer>
358374
</developers>
359375

360-
</project>
376+
</project>

0 commit comments

Comments
 (0)