Skip to content

Commit 623dda2

Browse files
committed
Fix and upgrade javadoc plugin, Update JUnit5 dependency from 5.6.0 to 5.6.2
1 parent 3a8620d commit 623dda2

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
66
### Features
77
- [PR-46](https://github.com/salesforce/kafka-junit/pull/46) Officially added support for Kafka versions 2.5.x, 2.6.x.
88

9+
### Internal dependency updates
10+
- JUnit5 from 5.6.0 to 5.6.2
11+
912
## 3.2.1 (02/03/2020)
1013
[PR-42](https://github.com/salesforce/kafka-junit/pull/42)
1114

pom.xml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696

9797
<!-- JUnit versions -->
9898
<junit4.version>4.13</junit4.version>
99-
<junit5.version>5.6.0</junit5.version>
99+
<junit5.version>5.6.2</junit5.version>
100100
<junit5PlatformProvider.version>1.3.2</junit5PlatformProvider.version>
101101

102102
<!-- test toggling -->
@@ -106,7 +106,7 @@
106106

107107
<!-- plugin versions -->
108108
<checkstyle.version>3.1.0</checkstyle.version>
109-
<javadoc.version>3.1.1</javadoc.version>
109+
<javadoc.version>3.2.0</javadoc.version>
110110
<surefire.version>2.22.2</surefire.version>
111111

112112
<!-- excluded tests based on specific kafka versions -->
@@ -293,6 +293,7 @@
293293
<version>${javadoc.version}</version>
294294
<configuration>
295295
<show>public</show>
296+
<source>8</source>
296297
</configuration>
297298
</plugin>
298299

@@ -338,6 +339,9 @@
338339
<goals>
339340
<goal>jar</goal>
340341
</goals>
342+
<configuration>
343+
<source>8</source>
344+
</configuration>
341345
</execution>
342346
</executions>
343347
</plugin>
@@ -373,4 +377,4 @@
373377
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
374378
</snapshotRepository>
375379
</distributionManagement>
376-
</project>
380+
</project>

0 commit comments

Comments
 (0)