You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "slawekjaranowski (via GitHub)" <gi...@apache.org> on 2023/02/01 21:19:21 UTC

[GitHub] [maven-compiler-plugin] slawekjaranowski commented on a diff in pull request #172: [MCOMPILER-525] - Incremental recompile incorrect detection of dependency change

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-unsubscribe@maven.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org