aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-11-07 09:04:37 +0100
committerJason Zaugg <jzaugg@gmail.com>2013-11-07 09:30:11 +0100
commit77b59499c87230c4c183cfee3734d11941930609 (patch)
treefcdbe022258cab39b93cbd9ea9414f1bd9998c04 /build.sbt
parent7999959bc91b7a72607c960f3af5b96575df8ed3 (diff)
downloadscala-async-77b59499c87230c4c183cfee3734d11941930609.tar.gz
scala-async-77b59499c87230c4c183cfee3734d11941930609.tar.bz2
scala-async-77b59499c87230c4c183cfee3734d11941930609.zip
Build changes before the first binary release.
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index bf53668..fc8edb8 100644
--- a/build.sbt
+++ b/build.sbt
@@ -12,7 +12,10 @@ version := "0.9.0-SNAPSHOT"
libraryDependencies <++= (scalaVersion) {
sv => Seq(
- "org.scala-lang" % "scala-reflect" % sv % "provided",
+ // TODO we should make this provided after we rely on @compileTimeOnly in scla-library in 2.11.-
+ // but if we do that now, and a user doesn't have this on the classpath, they can get the
+ // dreaded MissingRequirementErrors when unpickling types from scala.async.Async
+ "org.scala-lang" % "scala-reflect" % sv,
"org.scala-lang" % "scala-compiler" % sv % "provided"
)
}