File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 1515 * limitations under the License.
1616 */
1717
18+ import sbt ._
19+ import sbt .Keys .version
20+
1821import com .typesafe .tools .mima .core ._
1922import com .typesafe .tools .mima .core .MissingClassProblem
2023import com .typesafe .tools .mima .core .MissingTypesProblem
2124import com .typesafe .tools .mima .core .ProblemFilters ._
2225import com .typesafe .tools .mima .plugin .MimaKeys .{binaryIssueFilters , previousArtifact }
2326import com .typesafe .tools .mima .plugin .MimaPlugin .mimaDefaultSettings
2427
28+
2529object MimaBuild {
2630
2731 def excludeMember (fullName : String ) = Seq (
@@ -76,7 +80,7 @@ object MimaBuild {
7680 }
7781
7882 defaultExcludes ++ ignoredClasses.flatMap(excludeClass) ++
79- ignoredMembers.flatMap(excludeMember) ++ MimaExcludes .excludes
83+ ignoredMembers.flatMap(excludeMember) ++ MimaExcludes .excludes(currentSparkVersion)
8084 }
8185
8286 def mimaSettings (sparkHome : File , projectRef : ProjectRef ) = {
You can’t perform that action at this time.
0 commit comments