Browse Source

Make relative file references in checkstyle.xml more robust

Closes gh-26174
pull/27078/head
Andy Wilkinson 5 years ago
parent
commit
9e5f738f7a
  1. 4
      src/nohttp/checkstyle.xml

4
src/nohttp/checkstyle.xml

@ -4,10 +4,10 @@ @@ -4,10 +4,10 @@
<property name="charset" value="UTF-8"/>
<property name="fileExtensions" value=""/>
<module name="io.spring.nohttp.checkstyle.check.NoHttpCheck">
<property name="whitelistFileName" value="src/nohttp/whitelist.lines"/>
<property name="whitelistFileName" value="${config_loc}/whitelist.lines"/>
</module>
<module name="SuppressionFilter">
<property name="file" value="src/nohttp/suppressions.xml"/>
<property name="file" value="${config_loc}/suppressions.xml"/>
</module>
<module name="SuppressWithPlainTextCommentFilter"/>
</module>

Loading…
Cancel
Save