summaryrefslogtreecommitdiffstats
path: root/gradle/check.gradle
diff options
context:
space:
mode:
authorShevek <[email protected]>2013-12-27 05:49:13 -0800
committerShevek <[email protected]>2013-12-27 05:49:13 -0800
commitbdc6c852f418c3e042aa41469d84544e5f60a526 (patch)
tree7866346f0fa48ad46a6a427d016dd4b83451dbbe /gradle/check.gradle
parent39264fd6d2a6646e49f83b5b2b3512c1663a1c9b (diff)
Version bump to 1.4.0-SNAPSHOT.
Rewrite build system to use gradle. Clean up source for the new generation.
Diffstat (limited to 'gradle/check.gradle')
-rw-r--r--gradle/check.gradle25
1 files changed, 25 insertions, 0 deletions
diff --git a/gradle/check.gradle b/gradle/check.gradle
new file mode 100644
index 0000000..78f8180
--- /dev/null
+++ b/gradle/check.gradle
@@ -0,0 +1,25 @@
+// 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 {
+ sourceDirs = sourceSets.main.java.srcDirs
+ format = 'html'
+ includes = ['**/*.java', '**/*.groovy']
+ excludes = []
+}