Skip to content
Snippets Groups Projects
Commit 81fa19a9 authored by dgelessus's avatar dgelessus
Browse files

Remove use of deprecated Gradle findbugs plugin

parent c973a29b
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,6 @@ apply plugin: 'java' ...@@ -2,7 +2,6 @@ apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
apply plugin: 'maven' apply plugin: 'maven'
//apply plugin: 'jacoco' //apply plugin: 'jacoco'
apply plugin: 'findbugs'
project.version = '1.1.3-SNAPSHOT' project.version = '1.1.3-SNAPSHOT'
project.group = 'de.hhu.stups' project.group = 'de.hhu.stups'
...@@ -65,18 +64,6 @@ dependencies { ...@@ -65,18 +64,6 @@ dependencies {
// executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec") // executionData fileTree(project.rootDir.absolutePath).include("**/build/jacoco/*.exec")
// } // }
tasks.withType(FindBugs) {
// disable findbugs by default
// in order to run findbugs type 'gradle tlc4b findbugsMain findbugsTest'
task -> enabled = gradle.startParameter.taskNames.contains(task.name)
reports {
xml.enabled = false
html.enabled = true
}
ignoreFailures = true
}
test { test {
exclude('testing') exclude('testing')
//allJvmArgs = [ "-Xss515m" ] //allJvmArgs = [ "-Xss515m" ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment