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

[GitHub] [maven-compiler-plugin] gnodet commented on a diff in pull request #173: [MCOMPILER-395] Allow dependency exclusions for 'annotationProcessorPaths'

gnodet commented on code in PR #173:
URL: https://github.com/apache/maven-compiler-plugin/pull/173#discussion_r1101953132


##########
src/it/setup_annotation-verify-plugin/src/main/java/org.apache.maven.plugins.compiler.it/SourcePathReadGoal.java:
##########
@@ -38,15 +38,17 @@
 {
 
     @Parameter
-    protected String sourceClass;
+    private String sourceClass;
 
     @Parameter
-    protected String testSourceClass;
+    private String testSourceClass;
 
     @Parameter( defaultValue = "${project}" )
-    protected MavenProject project;
+    private MavenProject project;
+
+    @Parameter( defaultValue = "${project.build.sourceEncoding}" )
+    private String encoding;

Review Comment:
   Can this be moved in other PR ? 



-- 
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