We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7999959 commit 77b5949Copy full SHA for 77b5949
build.sbt
@@ -12,7 +12,10 @@ version := "0.9.0-SNAPSHOT"
12
13
libraryDependencies <++= (scalaVersion) {
14
sv => Seq(
15
- "org.scala-lang" % "scala-reflect" % sv % "provided",
+ // 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,
19
"org.scala-lang" % "scala-compiler" % sv % "provided"
20
)
21
}
0 commit comments