Skip to content
This repository was archived by the owner on Jun 23, 2020. It is now read-only.

tweak build to work in the Scala 2.13 community build #27

Merged
merged 1 commit into from
Dec 11, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ lazy val crossVersionSharedSources: Seq[Setting[_]] =
(unmanagedSourceDirectories in sc ).value.map { dir: File =>
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, y)) if y == 11 => new File(dir.getPath + "-2.11")
case Some((2, y)) if y == 12 => new File(dir.getPath + "-2.12")
case Some((2, y)) if y >= 12 => new File(dir.getPath + "-2.12")
}
}
}
Expand Down