You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
finalvalmimaPreviousArtifacts= settingKey[Set[ModuleID]]("Previous released artifacts used to test binary compatibility.")
13
+
14
+
@transient
13
15
finalvalmimaReportBinaryIssues= taskKey[Unit]("Logs all binary incompatibilities to the sbt console/logs.")
14
16
finalvalmimaExcludeAnnotations= settingKey[Seq[String]]("The fully-qualified class names of annotations that exclude problems")
17
+
18
+
@transient
15
19
finalvalmimaBinaryIssueFilters= taskKey[Seq[ProblemFilter]]("Filters to apply to binary issues found. Applies both to backward and forward binary compatibility checking.")
16
20
finalvalmimaFailOnProblem= settingKey[Boolean]("if true, fail the build on binary incompatibility detection.")
17
21
finalvalmimaFailOnNoPrevious= settingKey[Boolean]("if true, fail the build if no previous artifacts are set.")
finalvalmimaDependencyResolution= taskKey[DependencyResolution]("DependencyResolution to use to fetch previous artifacts.")
26
+
27
+
@transient
21
28
finalvalmimaPreviousClassfiles= taskKey[Map[ModuleID, File]]("Directories or jars containing the previous class files used to test compatibility with a given module.")
29
+
30
+
@transient
22
31
finalvalmimaCurrentClassfiles= taskKey[File]("Directory or jar containing the current class files used to test compatibility.")
32
+
33
+
@transient
23
34
finalvalmimaCheckDirection= settingKey[String]("Compatibility checking direction; default is \"backward\", but can also be \"forward\" or \"both\".")
35
+
36
+
@transient
24
37
finalvalmimaFindBinaryIssues= taskKey[Map[ModuleID, (List[Problem], List[Problem])]]("All backward and forward binary incompatibilities between a given module and current project.")
38
+
39
+
@transient
25
40
finalvalmimaBackwardIssueFilters= taskKey[Map[String, Seq[ProblemFilter]]]("Filters to apply to binary issues found grouped by version of a module checked against. These filters only apply to backward compatibility checking.")
41
+
42
+
@transient
26
43
finalvalmimaForwardIssueFilters= taskKey[Map[String, Seq[ProblemFilter]]]("Filters to apply to binary issues found grouped by version of a module checked against. These filters only apply to forward compatibility checking.")
0 commit comments