From 41ba3c6c75da93044a2c3d182c1666f99bc7f3f8 Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Wed, 30 Dec 2015 01:34:41 +0100 Subject: [PATCH] Trim configuration names from mappings cats (as of 213aab0) does that :-| --- plugin/src/main/scala/coursier/FromSbt.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/src/main/scala/coursier/FromSbt.scala b/plugin/src/main/scala/coursier/FromSbt.scala index d49d8c78f..7e77755b2 100644 --- a/plugin/src/main/scala/coursier/FromSbt.scala +++ b/plugin/src/main/scala/coursier/FromSbt.scala @@ -26,7 +26,7 @@ object FromSbt { for { from <- froms.split(',') to <- tos.split(',') - } yield (from, to) + } yield (from.trim, to.trim) } def attributes(attr: Map[String, String]): Map[String, String] =