@@ -4,21 +4,22 @@ import Dependencies.*
4
4
// but it may not be source compatible (ie, it will be a minor release).
5
5
ThisBuild / versionPolicyIntention := Compatibility .BinaryCompatible
6
6
7
- // TODO: after 3.1.0 release - clear up versionPolicyIgnored section
8
7
/*
9
- versionPolicyReportDependencyIssues ignored dependencies when compared to safe-akka 3.0 .0.
8
+ versionPolicyReportDependencyIssues ignored dependencies when compared to safe-akka 3.1 .0.
10
9
All of those should not affect the library users, binary compatibility should be preserved.
10
+
11
+ Remember to clear up after 3.1.1 release!
11
12
*/
12
13
ThisBuild / versionPolicyIgnored ++= Seq (
13
- // com.evolutiongaming:executor-tools_2.13: missing dependency
14
- " com.evolutiongaming" %% " executor-tools" ,
15
- // com.google.protobuf:protobuf-java: missing dependency
16
- " com.google.protobuf" % " protobuf-java" ,
14
+ /*
15
+ Examples:
16
+
17
+ //com.chuusai:shapeless_2.13: missing dependency
18
+ "com.chuusai" %% "shapeless",
17
19
//org.scala-lang.modules:scala-java8-compat_2.13:
18
- // incompatible version change from 0.9.0 to 1.0.0 (compatibility: early semantic versioning
20
+ // incompatible version change from 0.9.0 to 1.0.0 (compatibility: early semantic versioning)
19
21
"org.scala-lang.modules" %% "scala-java8-compat",
20
- // org.typelevel:cats-macros_2.13: missing dependency
21
- " org.typelevel" %% " cats-macros" ,
22
+ */
22
23
)
23
24
24
25
lazy val commonSettings = Seq (
0 commit comments