Skip to content

Commit 7ecac0c

Browse files
committed
Bumped several maven dependencies and plugins to latest version
1 parent 8d78b2c commit 7ecac0c

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Changed
99
- Replaced the maven _NOPLogger_ dependency with _SimpleLogger_ implementation: `org.slf4j:slf4j-nop` -> `org.slf4j:slf4j-simple`.
1010
- Updated multiple maven dependencies and plugins to latest version:
11-
- _org.junit.jupiter:*_: `5.7.0` -> `5.7.1`
12-
- _org.mockito:mockito-core_: `3.6.28` -> `3.9.0`
11+
- _org.junit.jupiter:*_: `5.7.0` -> `5.7.2`
12+
- _org.mockito:mockito-core_: `3.6.28` -> `3.11.2`
1313
- _com.fasterxml.jackson.core:jackson-databind_: `2.12.0` -> `2.12.3`
14-
- _org.assertj:assertj-core_: `3.18.1` -> `3.19.0`
14+
- _org.assertj:assertj-core_: `3.18.1` -> `3.20.2`
15+
- _org.slf4j:*_: `1.7.30` -> `1.7.31`
1516
- _org.jacoco:jacoco-maven-plugin_: `0.8.6` -> `0.8.7`
17+
- _org.apache.maven.plugins:maven-javadoc-plugin_: `3.2.0` -> `3.3.0`
1618

1719
## [3.0.3] - 2021-01-01
1820
### Added

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<plugin>
122122
<groupId>org.apache.maven.plugins</groupId>
123123
<artifactId>maven-javadoc-plugin</artifactId>
124-
<version>3.2.0</version>
124+
<version>3.3.0</version>
125125
<executions>
126126
<execution>
127127
<id>attach-javadocs</id>
@@ -288,23 +288,23 @@
288288
<dependency>
289289
<groupId>org.junit.jupiter</groupId>
290290
<artifactId>junit-jupiter-engine</artifactId>
291-
<version>5.7.1</version>
291+
<version>5.7.2</version>
292292
<scope>test</scope>
293293
</dependency>
294294

295295
<!-- JUnit 5: parameterized tests -->
296296
<dependency>
297297
<groupId>org.junit.jupiter</groupId>
298298
<artifactId>junit-jupiter-params</artifactId>
299-
<version>5.7.1</version>
299+
<version>5.7.2</version>
300300
<scope>test</scope>
301301
</dependency>
302302

303303
<!-- Mockito 3.x -->
304304
<dependency>
305305
<groupId>org.mockito</groupId>
306306
<artifactId>mockito-core</artifactId>
307-
<version>3.9.0</version>
307+
<version>3.11.2</version>
308308
<scope>test</scope>
309309
</dependency>
310310

@@ -334,7 +334,7 @@
334334
<dependency>
335335
<groupId>org.assertj</groupId>
336336
<artifactId>assertj-core</artifactId>
337-
<version>3.19.0</version>
337+
<version>3.20.2</version>
338338
<scope>test</scope>
339339
</dependency>
340340

@@ -346,14 +346,14 @@
346346
<dependency>
347347
<groupId>org.slf4j</groupId>
348348
<artifactId>slf4j-api</artifactId>
349-
<version>1.7.30</version>
349+
<version>1.7.31</version>
350350
</dependency>
351351

352352
<!-- Simple Logging Facade for Java: Binding for Simple implementation, which outputs all events to System.err. -->
353353
<dependency>
354354
<groupId>org.slf4j</groupId>
355355
<artifactId>slf4j-simple</artifactId>
356-
<version>1.7.30</version>
356+
<version>1.7.31</version>
357357
<scope>test</scope>
358358
</dependency>
359359

0 commit comments

Comments
 (0)