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-lang.git
commit fa880a43ed4bda54eb4fbab629d3c118dff513a5 Author: Gary Gregory <[email protected]> AuthorDate: Thu Feb 11 16:46:18 2021 -0500 Fix Checkstyle oddity on Windows. --- src/site/resources/checkstyle/checkstyle-suppressions.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/site/resources/checkstyle/checkstyle-suppressions.xml b/src/site/resources/checkstyle/checkstyle-suppressions.xml index 275e5c1..e62645c 100644 --- a/src/site/resources/checkstyle/checkstyle-suppressions.xml +++ b/src/site/resources/checkstyle/checkstyle-suppressions.xml @@ -22,4 +22,6 @@ limitations under the License. <!-- exclude generated JMH classes from all checks --> <suppress checks="[a-zA-Z0-9]*" files=".*[/\\]generated-test-sources[/\\].*"/> <suppress checks="RedundantModifier" files="ConstructorUtilsTest" lines="0-99999"/> + <!-- Windows-only workaround --> + <suppress checks="NewlineAtEndOfFile" files="target[/\\]maven-archiver[/\\]pom.properties"/> </suppressions>
