mirror of https://github.com/sbt/sbt.git
minor improvements to conflict message. closes #132
This commit is contained in:
parent
71a346bd4c
commit
d2ed74a5dd
|
|
@ -12,7 +12,7 @@ object ConflictWarning
|
|||
val conflicts = IvyActions.groupedConflicts(config.filter, config.group)(report)
|
||||
if(!conflicts.isEmpty)
|
||||
{
|
||||
val msg = "Potentially incompatible versions specified by " + config.label + ":"
|
||||
val msg = "Potentially incompatible versions of dependencies of " + config.label + ":"
|
||||
val conflictMsgs =
|
||||
for( (label, versions) <- conflicts ) yield
|
||||
label + ": " + versions.mkString(", ")
|
||||
|
|
|
|||
Loading…
Reference in New Issue