Skip to content

Commit

Permalink
Temporary fix MIMA checker. Since we now assemble Spark jar with Hive…
Browse files Browse the repository at this point in the history
…, we don't want to check the interfaces of all of our hive dependencies
  • Loading branch information
ahirreddy committed Apr 15, 2014
1 parent 3ef074a commit 6f7b8f6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ object GenerateMIMAIgnore {
// Heuristic to remove JVM classes that do not correspond to user-facing classes in Scala
name.contains("anon") ||
name.endsWith("$class") ||
name.contains("$sp")
name.contains("$sp") ||
name.contains("hive") ||
name.contains("Hive")
}

/**
Expand Down

0 comments on commit 6f7b8f6

Please sign in to comment.