mirror of https://github.com/sbt/sbt.git
Fix
Required to compile the readme module of Ammonite Surprised that this one wasn't caught earlier
This commit is contained in:
parent
76e989d21c
commit
403b3ddf7d
|
|
@ -30,7 +30,7 @@ case class InterProjectRepository(projects: Seq[(Project, Seq[(String, Seq[Artif
|
|||
projects.map { case (proj, artifactsByConfig) =>
|
||||
val artifacts = artifactsByConfig.toMap
|
||||
val allArtifacts = proj.allConfigurations.map { case (config, extends0) =>
|
||||
config -> extends0.toSeq.flatMap(artifacts.getOrElse(_, Nil))
|
||||
config -> (extends0 + config).toSeq.flatMap(artifacts.getOrElse(_, Nil))
|
||||
}
|
||||
proj.moduleVersion -> allArtifacts
|
||||
}.toMap
|
||||
|
|
|
|||
Loading…
Reference in New Issue