Skip to content

Commit

Permalink
Delete FindBugs (#766)
Browse files Browse the repository at this point in the history
baseline-circleci no longer integrates with the (deprecated) FindBugs plugin, as a pre-requisite for Gradle 6.0 compatibility.
  • Loading branch information
iamdanfox authored and bulldozer-bot[bot] committed Aug 23, 2019
1 parent 0402dbe commit 4903548
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions changelog/@unreleased/pr-766.v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
type: improvement
improvement:
description: baseline-circleci no longer integrates with the (deprecated) FindBugs
plugin, as a pre-requisite for Gradle 6.0 compatibility.
links:
- https://github.com/palantir/gradle-baseline/pull/766
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import java.util.Map;
import org.gradle.api.Task;
import org.gradle.api.plugins.quality.Checkstyle;
import org.gradle.api.plugins.quality.FindBugs;
import org.gradle.api.tasks.TaskState;
import org.gradle.api.tasks.compile.JavaCompile;

Expand Down Expand Up @@ -55,6 +54,6 @@ public void afterExecute(Task task, TaskState taskState) {
}

public static boolean isStyleTask(Task task) {
return task instanceof Checkstyle || task instanceof FindBugs || task instanceof JavaCompile;
return task instanceof Checkstyle || task instanceof JavaCompile;
}
}

0 comments on commit 4903548

Please sign in to comment.