I'm trying to use classes from a dependant project in my views, but it seems the scala compiler isn't able to pick it up. The project is a sibling of the play project:
workspace/lib
workspace/play-project
But I get an error when compiling the project:
@import lib.TheClass
Error:
[error] scala-2.9.1/src_managed/main/views/html/index.template.scala:28: not found: value lib
[error] _display_ {import lib.TheClass
How can I set up a project dependency for the scale compiler?
I found the following related SO questions, but they seem to talk about projects stored in central repositories: