For example, I can write something like:
mimaPreviousArtifacts := {
val versions = "1.0.0" :: "1.0.1" :: "1.0.2" :: Nil
Set(versions.map("my.org" %% "proj" % _): _*)
}
And I tried the following which weirdly worked locally for one project but not another and failed on Travis and CircleCI:
mimaPreviousArtifacts := Set("my.org" %% "proj" % "1.0.*")
Is the a canonical way to do this or do I just need to include adding additional versions in my release process?