initial import of project

This commit is contained in:
Juraj Michalek
2014-04-10 19:40:37 +02:00
parent e935e81271
commit 704f165b38
21 changed files with 436 additions and 0 deletions

35
04-findbugs/build.gradle Normal file
View File

@@ -0,0 +1,35 @@
apply plugin: 'java'
apply plugin: 'pmd'
apply plugin: 'checkstyle'
apply plugin: 'findbugs'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'org.testng', name: 'testng', version: '6.+'
}
test {
useTestNG()
}
pmdMain {
ruleSets = [ "basic", "strings" ]
ignoreFailures = true
}
tasks.withType(Checkstyle) {
ignoreFailures = true
}
tasks.withType(FindBugs) {
reports {
xml.enabled false
html.enabled true
}
ignoreFailures = true
reportLevel = 'low'
}