summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-29 22:47:15 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2017-12-29 22:47:15 -0800
commit3ce3d6214b1c52c692926ab373412b71fe097c21 (patch)
treeb8aee0d02ea98833ff5062c564632911cd464911 /build.sbt
parent81d4cfb6f63512b314fbbf49c4ba415aedc469d7 (diff)
downloadmill-3ce3d6214b1c52c692926ab373412b71fe097c21.tar.gz
mill-3ce3d6214b1c52c692926ab373412b71fe097c21.tar.bz2
mill-3ce3d6214b1c52c692926ab373412b71fe097c21.zip
Assign different overrides of a Target different cache directories and paths, to fix https://github.com/lihaoyi/mill/issues/86
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 716559bd..ab6e8384 100644
--- a/build.sbt
+++ b/build.sbt
@@ -30,8 +30,9 @@ val pluginSettings = Seq(
)
lazy val ammoniteRunner = project.settings(
+ scalaVersion := "2.12.4",
libraryDependencies +=
- "com.lihaoyi" % "ammonite" % "1.0.3" cross CrossVersion.full
+ "com.lihaoyi" % "ammonite" % "1.0.3-21-05b5d32" cross CrossVersion.full
)
@@ -89,7 +90,7 @@ lazy val core = project
"org.scala-lang" % "scala-reflect" % scalaVersion.value % "provided",
"com.lihaoyi" %% "sourcecode" % "0.1.4",
"com.lihaoyi" %% "pprint" % "0.5.3",
- "com.lihaoyi" % "ammonite" % "1.0.3-20-75e58ac" cross CrossVersion.full,
+ "com.lihaoyi" % "ammonite" % "1.0.3-21-05b5d32" cross CrossVersion.full,
"org.scala-sbt" %% "zinc" % "1.0.5",
"org.scala-sbt" % "test-interface" % "1.0"
),