diff options
Diffstat (limited to 'gradle/check.gradle')
-rw-r--r-- | gradle/check.gradle | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gradle/check.gradle b/gradle/check.gradle deleted file mode 100644 index ad1f9fc..0000000 --- a/gradle/check.gradle +++ /dev/null @@ -1,29 +0,0 @@ - // Checkstyle - // apply plugin: 'checkstyle' - // checkstyle { - // ignoreFailures = true - // configFile = rootProject.file('codequality/checkstyle.xml') - // } - - // FindBugs - apply plugin: 'findbugs' - findbugs { - ignoreFailures = true - } - findbugsTest.enabled = false - - // PMD - // apply plugin: 'pmd' - // tasks.withType(Pmd) { reports.html.enabled true } - - apply plugin: 'cobertura' - cobertura { - coverageFormats = [ 'html', 'xml' ] - } - githubPages { - pages { - from(cobertura.coverageReportDir) { - into "docs/cobertura" - } - } - } |