aboutsummaryrefslogtreecommitdiffstats
path: root/gradle/check.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'gradle/check.gradle')
-rw-r--r--gradle/check.gradle36
1 files changed, 0 insertions, 36 deletions
diff --git a/gradle/check.gradle b/gradle/check.gradle
deleted file mode 100644
index 50bceae..0000000
--- a/gradle/check.gradle
+++ /dev/null
@@ -1,36 +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"
- }
- }
- }
-
- apply plugin: "be.insaneprogramming.gradle.animalsniffer"
- animalsniffer {
- signature = "org.codehaus.mojo.signature:java15:+@signature"
- // ignores = ["my.package.name"]
- // annotations = [] // supported annotations to signal Animal Sniffer to ignore annotated elements
- }