Forked from arthurfnsc/CheckStyle Gradle Configuration
Created
September 28, 2020 08:56
-
-
Save alilosoft/8964ab02a5bb750308ad66d0edde3247 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build.gradle | |
apply plugin: "checkstyle" | |
checkstyle { | |
configFile = project(':').file("config/checkstyle/checkstyle.xml") | |
configProperties = ["suppressionFile" : project(':').file("config/checkstyle/suppressions.xml")] | |
toolVersion = "6.0" | |
} | |
tasks.withType(Checkstyle) { | |
reports { | |
xml.enabled false | |
html.enabled true | |
} | |
} | |
checkstyle.xml | |
<module name="SuppressionFilter"> | |
<property name="file" value="${suppressionFile}"/> | |
</module> | |
suppressions.xml | |
<?xml version="1.0"?> | |
<!DOCTYPE suppressions PUBLIC | |
"-//Puppy Crawl//DTD Suppressions 1.1//EN" | |
"http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> | |
<suppressions> | |
<suppress files="[/\\]build[/\\]" checks="[a-zA-Z0-9]*"/> | |
</suppressions> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment