psiroky commented on code in PR #180: URL: https://github.com/apache/maven-compiler-plugin/pull/180#discussion_r1121568151
########## src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java: ########## @@ -330,6 +335,22 @@ public abstract class AbstractCompilerMojo extends AbstractMojo { @Parameter private List<DependencyCoordinate> annotationProcessorPaths; + /** + * <p> + * Whether to use the Maven dependency management section when resolving transitive dependencies of annotation + * processor paths. + * </p> + * <p> + * This flag does not enable / disable the ability to get the version of annotation processor paths + * (the top-level paths) from dependency management section. It only influences the resolution of + * transitive dependencies of those top-level paths. + * </p> + * + * @since 3.12.0 + */ + @Parameter(defaultValue = "false") Review Comment: It may definitely change the resulting `processorpath`, thus changing the behavior. So it should be opt-in. -- 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