slawekjaranowski commented on code in PR #172: URL: https://github.com/apache/maven-compiler-plugin/pull/172#discussion_r1093738580
########## src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java: ########## @@ -531,12 +541,12 @@ /** * File extensions to check timestamp for incremental build. - * Default contains only <code>class</code> and <code>jar</code>. + * Default contains only {@code class} and {@code jar}. * * @since 3.1 */ - @Parameter - private List<String> fileExtensions; + @Parameter( defaultValue = "class,jar" ) Review Comment: When you add `defaultValue` the information about it will added by plugin tools, so we can remove manual description. -- 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: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org