From 81fa19a9f8ad9aab948ffbe66df62c87ab9376a3 Mon Sep 17 00:00:00 2001
From: dgelessus <dgelessus@users.noreply.github.com>
Date: Mon, 13 Jan 2020 14:42:13 +0100
Subject: [PATCH] Remove use of deprecated Gradle findbugs plugin

---
 build.gradle | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/build.gradle b/build.gradle
index d3bee03..1358d12 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,7 +2,6 @@ apply plugin: 'java'
 apply plugin: 'eclipse'
 apply plugin: 'maven'
 //apply plugin: 'jacoco'
-apply plugin: 'findbugs'
 
 project.version = '1.1.3-SNAPSHOT'
 project.group = 'de.hhu.stups'
@@ -65,18 +64,6 @@ dependencies {
 // 	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 {
 	exclude('testing')
 	//allJvmArgs = [ "-Xss515m" ]
-- 
GitLab