Skip to content

Commit

Permalink
Add Mima excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryshao committed Aug 1, 2014
1 parent 7529810 commit e90c37b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion project/MimaExcludes.scala
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ object MimaExcludes {
"org.apache.spark.storage.TachyonStore.putValues")
) ++
Seq(
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.streaming.flume.FlumeReceiver.this")
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.streaming.flume.FlumeReceiver.this"),
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"org.apache.spark.streaming.kafka.KafkaUtils.createStream"),
ProblemFilters.exclude[IncompatibleMethTypeProblem](
"org.apache.spark.streaming.kafka.KafkaReceiver.this")
) ++
Seq( // Ignore some private methods in ALS.
ProblemFilters.exclude[MissingMethodProblem](
Expand Down

0 comments on commit e90c37b

Please sign in to comment.