Skip to content

Commit ba94f19

Browse files
committed
Fix javadoc with java 11
1 parent 5c915c1 commit ba94f19

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,10 @@
202202
<plugin>
203203
<groupId>org.apache.maven.plugins</groupId>
204204
<artifactId>maven-javadoc-plugin</artifactId>
205-
<version>2.10.3</version>
205+
<version>3.1.1</version>
206+
<configuration>
207+
<source>1.8</source>
208+
</configuration>
206209
<executions>
207210
<execution>
208211
<id>attach-javadocs</id>

src/main/java/com/github/couchmove/service/ChangeLogFileService.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public ChangeLogFileService(String changePath) {
4747
* Reads all the {@link ChangeLog}s contained in the Change Folder, ignoring unhandled files
4848
*
4949
* @return An ordered list of {@link ChangeLog}s by {@link ChangeLog#version}
50+
* @throws IOException if unable to open changePath
5051
*/
5152
public List<ChangeLog> fetch() throws IOException {
5253
logger.info("Reading from migration folder '{}'", changePath);

0 commit comments

Comments
 (0)