mirror of https://github.com/sbt/sbt.git
Ref #2068. Scala version bump needs to accompany scala-reflect bump.
This commit is contained in:
parent
a71a7ba582
commit
351a7dae1d
|
|
@ -250,7 +250,7 @@ lazy val ivyProj = (project in file("ivy")).
|
|||
settings(
|
||||
baseSettings,
|
||||
name := "Ivy",
|
||||
libraryDependencies ++= Seq(ivy, jsch, sbtSerialization, launcherInterface),
|
||||
libraryDependencies ++= Seq(ivy, jsch, sbtSerialization, scalaReflect.value, launcherInterface),
|
||||
testExclusive)
|
||||
|
||||
// Runner for uniform test interface
|
||||
|
|
@ -293,7 +293,7 @@ lazy val cacheProj = (project in cachePath).
|
|||
settings(
|
||||
baseSettings,
|
||||
name := "Cache",
|
||||
libraryDependencies ++= Seq(sbinary, sbtSerialization) ++ scalaXml.value
|
||||
libraryDependencies ++= Seq(sbinary, sbtSerialization, scalaReflect.value) ++ scalaXml.value
|
||||
)
|
||||
|
||||
// Builds on cache to provide caching for filesystem-related operations
|
||||
|
|
|
|||
Loading…
Reference in New Issue