Skip to content

Commit 77b5949

Browse files
committed
Build changes before the first binary release.
1 parent 7999959 commit 77b5949

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sbt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ version := "0.9.0-SNAPSHOT"
1212

1313
libraryDependencies <++= (scalaVersion) {
1414
sv => Seq(
15-
"org.scala-lang" % "scala-reflect" % sv % "provided",
15+
// TODO we should make this provided after we rely on @compileTimeOnly in scla-library in 2.11.-
16+
// but if we do that now, and a user doesn't have this on the classpath, they can get the
17+
// dreaded MissingRequirementErrors when unpickling types from scala.async.Async
18+
"org.scala-lang" % "scala-reflect" % sv,
1619
"org.scala-lang" % "scala-compiler" % sv % "provided"
1720
)
1821
}

0 commit comments

Comments
 (0)