From 351a7dae1df7c950579dd7ba775e3814185ffdb4 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Thu, 9 Jul 2015 21:20:47 -0400 Subject: [PATCH] Ref #2068. Scala version bump needs to accompany scala-reflect bump. --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 132ca67fe..0f802c394 100644 --- a/build.sbt +++ b/build.sbt @@ -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