fridrich commented on PR #1274:
URL:
https://github.com/apache/maven-javadoc-plugin/pull/1274#issuecomment-3414277607
If the encoding depends on the Files.newBufferedReader(Path) without the
specified encoding, for current jdk8u, it is:
` public static BufferedReader newBufferedReader(Path path) throws
IOException {
return newBufferedReader(path, StandardCharsets.UTF_8);
}
`
and for jdk11u, it is
` public static BufferedWriter newBufferedWriter(Path path, OpenOption...
options)
throws IOException
{
return newBufferedWriter(path, UTF_8.INSTANCE, options);
}
`
So, the regression might be actually just an one-off error and including
java 8 into the group might be actually a solution.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]