wuwen5 commented on code in PR #196: URL: https://github.com/apache/maven-release/pull/196#discussion_r1296739293
########## maven-release-manager/src/main/java/org/apache/maven/shared/release/phase/AbstractMapVersionsPhase.java: ########## @@ -118,6 +125,15 @@ public ReleaseResult execute( throws ReleaseExecutionException { ReleaseResult result = new ReleaseResult(); + List<String> additionalExcludes = releaseDescriptor.getCheckModificationExcludes(); + + if (additionalExcludes != null) { + for (String additionalExclude : additionalExcludes) { + exclusionPatterns.add( + additionalExclude.replace("\\", File.separator).replace("/", File.separator)); Review Comment: I fully referenced the implementation in `ScmCheckModificationsPhase`. There is a comment explaining `// SelectorUtils expects File.separator, don't standardize` -- 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