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 {
|
for {
|
||||||
(from, to) <- allMappings
|
(from, to) <- allMappings.distinct
|
||||||
pub <- publications
|
pub <- publications.distinct
|
||||||
} yield {
|
} yield {
|
||||||
val dep0 = dep
|
val dep0 = dep
|
||||||
.withConfiguration(to)
|
.withConfiguration(to)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue