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