Skip to content

Commit 33e6361

Browse files
committed
Revert "[SPARK-1398] Removed findbugs jsr305 dependency"
This reverts commit 92a86b2.
1 parent 9231b01 commit 33e6361

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

core/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@
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>
8589
<dependency>
8690
<groupId>org.slf4j</groupId>
8791
<artifactId>slf4j-api</artifactId>

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,11 @@
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>
217222
<dependency>
218223
<groupId>org.slf4j</groupId>
219224
<artifactId>slf4j-api</artifactId>

project/SparkBuild.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ 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",
299300
"log4j" % "log4j" % "1.2.17",
300301
"org.slf4j" % "slf4j-api" % slf4jVersion,
301302
"org.slf4j" % "slf4j-log4j12" % slf4jVersion,

0 commit comments

Comments
 (0)