Skip to content

Commit

Permalink
ArtefactResolution: Fix regression in allCompilerLibs()
Browse files Browse the repository at this point in the history
  • Loading branch information
tindzk committed Feb 22, 2020
1 parent 227a6ac commit 6f9f39a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/scala/seed/artefact/ArtefactResolution.scala
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,11 @@ object ArtefactResolution {
.map(_.module)
.flatMap(
m =>
m.targets.toSet.flatMap(
p =>
compilerDeps(m, p)
.map(d => (m.scalaOrganisation.get, m.scalaVersion.get, d))
)
m.targets.toSet.flatMap { p =>
val pm = BuildConfig.platformModule(m, p).get
compilerDeps(m, p)
.map(d => (pm.scalaOrganisation.get, pm.scalaVersion.get, d))
}
)
.toSet

Expand Down

0 comments on commit 6f9f39a

Please sign in to comment.