I'm trying to create some kind of template with SBT (a tool that is completely insignificant for me). I use shapeless sbt files as the main link for the task. I saw that this project uses code generation from scratch, but my case is slightly different since I would like to generate some classes from others. I pretend to use the new Scala 2.10.0-M4 reflection capabilities for this. What basic configuration is needed to be reflected in the SBT assembly?
Currently, sbt cannot find the scala.reflect.runtime.universe package, and I do not know if this problem arose either from the new Scala jar section or from a bad configuration. In addition, my sbt says:
[info] This is sbt 0.13.0-20120530-052139 [info] The current project is {file:/home/jlg/sandbox/abc/}abc [info] The current project is built against Scala 2.10.0-SNAPSHOT [info] [info] sbt, sbt plugins, and build definitions are using Scala 2.9.2
By the way, does anyone know of other projects using SBT to generate source code?
jeslg
source share