Skip to content

Commit 92a86b2

Browse files
markhamstrapwendell
authored andcommitted
[SPARK-1398] Removed findbugs jsr305 dependency
Should be a painless upgrade, and does offer some significant advantages should we want to leverage FindBugs more during the 1.0 lifecycle. http://findbugs.sourceforge.net/findbugs2.html Author: Mark Hamstra <markhamstra@gmail.com> Closes #307 from markhamstra/findbugs and squashes the following commits: 99f2d09 [Mark Hamstra] Removed unnecessary findbugs jsr305 dependency
1 parent 47ebea5 commit 92a86b2

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

core/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,6 @@
8282
<groupId>com.google.guava</groupId>
8383
<artifactId>guava</artifactId>
8484
</dependency>
85-
<dependency>
86-
<groupId>com.google.code.findbugs</groupId>
87-
<artifactId>jsr305</artifactId>
88-
</dependency>
8985
<dependency>
9086
<groupId>org.slf4j</groupId>
9187
<artifactId>slf4j-api</artifactId>

pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,11 +214,6 @@
214214
<artifactId>guava</artifactId>
215215
<version>14.0.1</version>
216216
</dependency>
217-
<dependency>
218-
<groupId>com.google.code.findbugs</groupId>
219-
<artifactId>jsr305</artifactId>
220-
<version>1.3.9</version>
221-
</dependency>
222217
<dependency>
223218
<groupId>org.slf4j</groupId>
224219
<artifactId>slf4j-api</artifactId>

project/SparkBuild.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ object SparkBuild extends Build {
296296
name := "spark-core",
297297
libraryDependencies ++= Seq(
298298
"com.google.guava" % "guava" % "14.0.1",
299-
"com.google.code.findbugs" % "jsr305" % "1.3.9",
300299
"log4j" % "log4j" % "1.2.17",
301300
"org.slf4j" % "slf4j-api" % slf4jVersion,
302301
"org.slf4j" % "slf4j-log4j12" % slf4jVersion,

0 commit comments

Comments
 (0)