diff options
author | Shevek <[email protected]> | 2014-12-03 00:01:47 -0800 |
---|---|---|
committer | Shevek <[email protected]> | 2014-12-03 00:01:47 -0800 |
commit | a3306f269ec75a617f7bf4ee6a292a961ba2c1f5 (patch) | |
tree | 59b477b295579dfd60d4de301ff475ce999c1744 /gradle/check.gradle | |
parent | 28c3704abb4f98989d6aa57dc1395df99a77f7d2 (diff) |
SourceChangeEvent now uses an enum.
-> gradle 2.2.1
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" + } } } -} |