File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
- import sbtcrossproject .CrossPlugin .autoImport .{crossProject , CrossType }
1
+ import com .typesafe .tools .mima .core .{IncompatibleSignatureProblem , ProblemFilters }
2
+ import sbtcrossproject .CrossPlugin .autoImport .{CrossType , crossProject }
2
3
3
4
ThisBuild / organization := " org.julienrf"
4
5
@@ -10,6 +11,11 @@ ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible
10
11
// Temporary, because version 10.0.0 was invalid
11
12
ThisBuild / versionPolicyPreviousVersions := Seq (" 10.0.1" )
12
13
14
+ ThisBuild / mimaBinaryIssueFilters ++= Seq (
15
+ // package private method
16
+ ProblemFilters .exclude[IncompatibleSignatureProblem ](" julienrf.json.derived.DerivedOWritesUtil.makeCoProductOWrites" )
17
+ )
18
+
13
19
ThisBuild / developers := List (
14
20
Developer (
15
21
" julienrf" ,
You can’t perform that action at this time.
0 commit comments