michael-o commented on a change in pull request #62: URL: https://github.com/apache/maven-release/pull/62#discussion_r537335786
########## File path: maven-release-plugin/src/main/java/org/apache/maven/plugins/release/PrepareReleaseMojo.java ########## @@ -387,4 +403,27 @@ protected void prepareRelease( boolean generateReleasePoms ) } } + private String resolveLineSeparator() + { + if ( lineSeparator == null ) + { + return System.getProperty( "line.separator" ); + } + + switch ( lineSeparator ) Review comment: I prefer not to have an option at all: Same as source always, implicit. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org