mirror of https://github.com/sbt/sbt.git
Use the right conf mapping separator
This commit is contained in:
parent
5e24676216
commit
064feb8f3e
|
|
@ -42,7 +42,7 @@ object Config {
|
|||
.groupBy(_.copy(configuration = ""))
|
||||
.map {
|
||||
case (dep, l) =>
|
||||
dep.copy(configuration = l.map(_.configuration).mkString(","))
|
||||
dep.copy(configuration = l.map(_.configuration).mkString(";"))
|
||||
}
|
||||
.toSet
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ object Print {
|
|||
.groupBy(_.copy(configuration = ""))
|
||||
.toVector
|
||||
.map { case (k, l) =>
|
||||
k.copy(configuration = l.toVector.map(_.configuration).sorted.mkString(","))
|
||||
k.copy(configuration = l.toVector.map(_.configuration).sorted.mkString(";"))
|
||||
}
|
||||
.sortBy { dep =>
|
||||
(dep.module.organization, dep.module.name, dep.module.toString, dep.version)
|
||||
|
|
|
|||
Loading…
Reference in New Issue