Skip to content
Snippets Groups Projects
Commit ec621066 authored by User expired's avatar User expired
Browse files

gradle still not compatible with findbugs 3.0 (bug was entered into

gradle forum) -> switching back to findbugs 2.0.3 and jdk7
parent 2c080503
No related branches found
No related tags found
No related merge requests found
......@@ -49,6 +49,8 @@ description = 'PhD project of Nikolaus Krismer'
ext {
isRelease = false
versionFindbugs = '2.0.3'
versionJacoco = '+'
}
if (!version.matches(~/[0-9\.]*(-SNAPSHOT)?/)) {
......@@ -128,7 +130,7 @@ buildscript {
dependencies {
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.+'
compile group: 'com.google.code.findbugs', name: 'annotations', version: '+'
compile group: 'com.google.code.findbugs', name: 'annotations', version: versionFindbugs
compile group: 'com.jolbox', name: 'bonecp', version: '+'
compile group: 'com.tngtech.java', name: 'config-builder', version: '1.+'
compile group: 'org.postgresql', name: 'postgresql', version: '9.2-1004-jdbc41'
......@@ -205,14 +207,14 @@ eclipse {
}
findbugs {
effort = 'max'
// effort = 'max'
ignoreFailures = true
reportLevel = 'low'
toolVersion = '+'
// reportLevel = 'low'
toolVersion = versionFindbugs
}
jacoco {
toolVersion = '+'
toolVersion = versionJacoco
}
jar {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment