This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git
The following commit(s) were added to refs/heads/master by this push: new 9e7c77d Checkstyle: Don't complain about one EOL when file is generated on Windows. 9e7c77d is described below commit 9e7c77d147ec1b76ae3504ad99419398e23b2cc8 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 25 15:01:53 2020 -0400 Checkstyle: Don't complain about one EOL when file is generated on Windows. --- checkstyle-suppressions.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml index 6eea2ca..29be0ce 100755 --- a/checkstyle-suppressions.xml +++ b/checkstyle-suppressions.xml @@ -30,7 +30,8 @@ <suppress checks="LineLength" files=".*CommonsDistributionDetachmentMojoTest.java" /> <suppress checks="LineLength" files=".*CommonsDistributionStagingMojoTest.java" /> - <suppress checks="LineLength" files="target/maven-archiver/*.properties" /> - <suppress checks="LineLength" files="target/testing-commons-release-plugin/*.properties" /> + <suppress checks="LineLength" files="target/testing-commons-release-plugin/*.properties" /> <suppress checks="FinalClassCheck" files=".*Delegate.java" /> + <!-- Don't complain when generated on Windows --> + <suppress checks="NewlineAtEndOfFile" files="target\\maven-archiver\\pom.properties" /> </suppressions> \ No newline at end of file