Skip to content
Snippets Groups Projects
Commit b05e17e1 authored by Nikolaus Krismer's avatar Nikolaus Krismer
Browse files

downgrade to jdk7 (because of findbugs problem)

parent b53508b5
No related branches found
No related tags found
No related merge requests found
...@@ -24,8 +24,11 @@ group = 'at.uibk.dbis' ...@@ -24,8 +24,11 @@ group = 'at.uibk.dbis'
version = '0.2.3-SNAPSHOT' version = '0.2.3-SNAPSHOT'
description = 'PhD project of Nikolaus Krismer' description = 'PhD project of Nikolaus Krismer'
sourceCompatibility=JavaVersion.VERSION_1_8 // Upgrade as soon as findbugs 2.1.0 is available (new version should support JDK8)
targetCompatibility=JavaVersion.VERSION_1_8 //sourceCompatibility=JavaVersion.VERSION_1_8
//targetCompatibility=JavaVersion.VERSION_1_8
sourceCompatibility=JavaVersion.VERSION_1_7
targetCompatibility=JavaVersion.VERSION_1_7
/* /*
* Version handling: * Version handling:
...@@ -134,7 +137,7 @@ buildscript { ...@@ -134,7 +137,7 @@ buildscript {
dependencies { dependencies {
classpath 'com.moowork.gradle:gradle-grunt-plugin:0.5' classpath 'com.moowork.gradle:gradle-grunt-plugin:0.5'
classpath 'com.moowork.gradle:gradle-node-plugin:0.5' classpath 'com.moowork.gradle:gradle-node-plugin:0.5'
classpath 'org.gradle.api.plugins:gradle-cargo-plugin:1.4' classpath 'org.gradle.api.plugins:gradle-cargo-plugin:1.4.1'
classpath 'org.gradle.api.plugins:gradle-vagrant-plugin:0.5' classpath 'org.gradle.api.plugins:gradle-vagrant-plugin:0.5'
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:0.7.0' classpath 'org.asciidoctor:asciidoctor-gradle-plugin:0.7.0'
} }
...@@ -271,7 +274,7 @@ eclipse { ...@@ -271,7 +274,7 @@ eclipse {
} }
findbugs { findbugs {
effort = "max" effort = 'max'
ignoreFailures = true ignoreFailures = true
toolVersion = '2.0.3' toolVersion = '2.0.3'
} }
......
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