Remove some duplicate input prior to resolution

This commit is contained in:
Alexandre Archambault 2020-05-14 16:35:07 +02:00
parent 597a4c014a
commit 55a0e79239
1 changed files with 2 additions and 2 deletions

View File

@ -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)