From 0b12845cbdb1031c3cddf9f9a5d2ba7b61240604 Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 11 May 2021 11:20:19 -0700 Subject: [PATCH 1/2] Remove findbugs --- build.sbt | 3 --- project/plugins.sbt | 1 - 2 files changed, 4 deletions(-) diff --git a/build.sbt b/build.sbt index 609cb1a3..4c4a942a 100644 --- a/build.sbt +++ b/build.sbt @@ -49,9 +49,6 @@ val buildSettings = Seq[Setting[_]]( ), // Add sonatype repository settings publishTo := sonatypePublishToBundle.value, - // Find bugs - findbugsReportType := Some(FindbugsReport.FancyHtml), - findbugsReportPath := Some(crossTarget.value / "findbugs" / "report.html"), // Style check config: (sbt-jchekcstyle) jcheckStyleConfig := "facebook", // Run jcheckstyle both for main and test codes diff --git a/project/plugins.sbt b/project/plugins.sbt index 9e68f5fe..5b367eb1 100755 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,6 @@ addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15") addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.7") addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2") -addSbtPlugin("com.github.sbt" % "sbt-findbugs" % "2.0.0") // TODO: Fixes jacoco error: // java.lang.NoClassDefFoundError: Could not initialize class org.jacoco.core.internal.flow.ClassProbesAdapter //addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.3.0") From df6cc8d286acf33fef64aeb8595ee77e0038b9b4 Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 11 May 2021 11:20:48 -0700 Subject: [PATCH 2/2] Remove findbug settings --- build.sbt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 4c4a942a..7ec3c028 100644 --- a/build.sbt +++ b/build.sbt @@ -65,10 +65,7 @@ lazy val root = Project(id = "msgpack-java", base = file(".")) // Do not publish the root project publishArtifact := false, publish := {}, - publishLocal := {}, - findbugs := { - // do not run findbugs for the root project - } + publishLocal := {} ) .aggregate(msgpackCore, msgpackJackson)