don't run checkstyle or pmd on zipsigner, the format is too different

If someone wants to clean this up, feel free...
This commit is contained in:
Hans-Christoph Steiner 2018-04-19 16:19:21 +02:00
parent 4e4dd2385b
commit 898c731fcc
3 changed files with 11 additions and 0 deletions

View File

@ -259,6 +259,7 @@ task pmdMain(type: Pmd) {
ruleSets = [] // otherwise defaults clash with the list in rules.xml
source 'src/main/java'
include '**/*.java'
exclude '**/kellinwood/**/*.java'
}
task pmdTest(type: Pmd) {

View File

@ -142,4 +142,7 @@
<property name="influenceFormat" value="1"/>
</module>
<module name="SuppressionFilter">
<property name="file" value="config/checkstyle/suppressions.xml"/>
</module>
</module>

View File

@ -0,0 +1,7 @@
<?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 checks="." files="[\\/]kellinwood[\\/].*\.java$"/>
</suppressions>