mirror of https://github.com/sbt/sbt.git
Remove some duplicate input prior to resolution
This commit is contained in:
parent
597a4c014a
commit
55a0e79239
|
|
@ -102,8 +102,8 @@ object FromSbt {
|
|||
}
|
||||
|
||||
for {
|
||||
(from, to) <- allMappings
|
||||
pub <- publications
|
||||
(from, to) <- allMappings.distinct
|
||||
pub <- publications.distinct
|
||||
} yield {
|
||||
val dep0 = dep
|
||||
.withConfiguration(to)
|
||||
|
|
|
|||
Loading…
Reference in New Issue