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

finally managed findbugs 3.0 and jdk 1.8 upgrade (had to use hard-coded

asciidoctor version)
parent 22eff180
No related branches found
No related tags found
No related merge requests found
......@@ -18,10 +18,8 @@ import org.apache.tools.ant.filters.ReplaceTokens
group = 'at.uibk.dbis'
version = '0.3.3-SNAPSHOT'
sourceCompatibility=JavaVersion.VERSION_1_7
targetCompatibility=JavaVersion.VERSION_1_7
//sourceCompatibility=JavaVersion.VERSION_1_8
//targetCompatibility=JavaVersion.VERSION_1_8
sourceCompatibility=JavaVersion.VERSION_1_8
targetCompatibility=JavaVersion.VERSION_1_8
description = 'PhD project of Nikolaus Krismer'
......@@ -49,7 +47,7 @@ description = 'PhD project of Nikolaus Krismer'
ext {
isRelease = false
versionFindbugs = '2.0.3'
versionFindbugs = '+'
versionJacoco = '+'
}
......@@ -124,7 +122,8 @@ buildscript {
dependencies {
classpath 'org.gradle.api.plugins:gradle-vagrant-plugin:+'
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:+'
// hard-coded asciidoctor plugin version... for more detail see: https://github.com/asciidoctor/asciidoctor-gradle-plugin/issues/84
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:0.7.1'
}
}
......@@ -208,7 +207,7 @@ eclipse {
findbugs {
// effort = 'max'
ignoreFailures = true
// ignoreFailures = true
// reportLevel = 'low'
toolVersion = versionFindbugs
}
......
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