Skip to content

Commit 534198e

Browse files
authored
Merge pull request #125 from dwijnand/fix/124
Specify that artifact.classifier must be empty. Fixes #124
2 parents eb1e9f3 + b34b2b9 commit 534198e

File tree

1 file changed

+1
-1
lines changed
  • sbtplugin/src/main/scala/com/typesafe/tools/mima/plugin

1 file changed

+1
-1
lines changed

sbtplugin/src/main/scala/com/typesafe/tools/mima/plugin/SbtMima.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ object SbtMima {
116116
config <- report.configurations
117117
module <- config.modules
118118
(artifact, file) <- module.artifacts
119-
// TODO - Hardcode this?
120119
if artifact.name == m.name
120+
if artifact.classifier.isEmpty
121121
} yield file).headOption
122122
optFile getOrElse sys.error("Could not resolve previous ABI: " + m)
123123
}

0 commit comments

Comments
 (0)