Skip to content

Commit

Permalink
Add back the scala instance jars
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed Nov 29, 2017
1 parent 46bf04d commit a227c4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/src/main/scala/bloop/Compiler.scala
Expand Up @@ -44,7 +44,8 @@ object Compiler {
.flatMap(src => Paths.getAll(src, "glob:**.{scala,java}"))
.distinct
val classesDir = inputs.classesDir.toFile
val classpath = Array(classesDir) ++ inputs.classpath.map(_.toFile)
// TODO(jvican): Figure out why `inputs.scalaInstance.allJars` is required here.
val classpath = Array(classesDir) ++ inputs.classpath.map(_.toFile) ++ inputs.scalaInstance.allJars

CompileOptions
.create()
Expand Down

0 comments on commit a227c4e

Please sign in to comment.