I am trying to build old projects against Scala 2.10.0 RC1. Here is the error I get when I do this:
rahul@acb70333 :~/Projects/Vayana/gryphon-camel-scala> gradle build :compileJava UP-TO-DATE :compileScala [ant:scalac] scala.reflect.internal.MissingRequirementError: object scala.beans.BeanInfo in compiler mirror not found. [ant:scalac] at scala.reflect.internal.MissingRequirementError$.signal(MissingRequirementError.scala:16) ... [ant:scalac] at org.gradle.launcher.GradleMain.main(GradleMain.java:26) FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compileScala'. > Compile failed because of an internal compiler error (object scala.beans.BeanInfo in compiler mirror not found.); see the error output for details. * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. BUILD FAILED Total time: 24.7 secs
The full stack trace is here: https://www.refheap.com/paste/6228 .
What does this error message mean? Am I missing some libraries on the way to classes?
source share