Skip to content

Commit e96b85c

Browse files
authored
Remove findbugs (#553)
* Remove findbugs * Remove findbug settings
1 parent ed544b5 commit e96b85c

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

build.sbt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ val buildSettings = Seq[Setting[_]](
4949
),
5050
// Add sonatype repository settings
5151
publishTo := sonatypePublishToBundle.value,
52-
// Find bugs
53-
findbugsReportType := Some(FindbugsReport.FancyHtml),
54-
findbugsReportPath := Some(crossTarget.value / "findbugs" / "report.html"),
5552
// Style check config: (sbt-jchekcstyle)
5653
jcheckStyleConfig := "facebook",
5754
// Run jcheckstyle both for main and test codes
@@ -68,10 +65,7 @@ lazy val root = Project(id = "msgpack-java", base = file("."))
6865
// Do not publish the root project
6966
publishArtifact := false,
7067
publish := {},
71-
publishLocal := {},
72-
findbugs := {
73-
// do not run findbugs for the root project
74-
}
68+
publishLocal := {}
7569
)
7670
.aggregate(msgpackCore, msgpackJackson)
7771

project/plugins.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15")
22
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.7")
33
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
4-
addSbtPlugin("com.github.sbt" % "sbt-findbugs" % "2.0.0")
54
// TODO: Fixes jacoco error:
65
// java.lang.NoClassDefFoundError: Could not initialize class org.jacoco.core.internal.flow.ClassProbesAdapter
76
//addSbtPlugin("com.github.sbt" % "sbt-jacoco" % "3.3.0")

0 commit comments

Comments
 (0)