In a project I need to replace a Java compilation task with a Scala compilation task. The first step I need to take is to find an equivalent for this: http://docs.oracle.com/javase/7/docs/api/javax/tools/JavaCompiler.html
Is there anything like this in Scala? A brief Google search gave no interesting results.
What I need is a library that allow me to take a file in the form of a list of lines or also a file on the HD and compile it.
I don't simply need to evaluate it but I must be able to get a compiled .class file from it.