Hi there,
we currently use the three languages groovy, scala and of course java.
But when it comes to joint compilation, we have problems when those languages are mixed together.
After a little research it turns out, that this problem should be solved by compiling in the following order:
http://www.scala-lang.org/old/node/1044.html
- Generate Java stubs from Groovy sources
- Compile Scala code using Java sources and generated stubs on the way
- Compile all Java code with generated stubs and compiled Scala classes
- Compile Groovy code with already compiled Java classes
So my question is now, how can I tell groovy via gradle just to generate stubs, and then tell the scala compiler to use those for compilation?
regards
Guenther