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