I have a project's build.sbt which is using :
libraryDependencies ++= Seq(
"com.lerestau" % "killer-launcher" % "1.0.2",
"com.lerestau" % "menu-starter" % "1.0.0"
)
menu-starter transitively downloading "killer-launcher" % "0.0.8" and Hence getting errors in current project. Is there any way to resolve this sort of conflict. I came up with dependencyOverrides, but that works if conflict is entirely binary. That didn't work. How to resolve in SBT?