Im trying to follow the play framework ebean tutorial here:
http://www.playframework.com/documentation/2.1.2/JavaEbean
However when I try to include play.db.ebean.* and try to compile, the package is not found (no play.db package). I have added ebean.default="models.*" to my application.conf
Is there anything else I need to do to get the dependency? Is there an equivalent to play deps from play 1.2 for example?
The trace:
[error] /home/nfv/workspace-scala/scims/app/models/Person.scala:3: object db is not a member of package play
[error] import play.db.ebean.Model;
[error] ^
[error] /home/nfv/workspace-scala/scims/app/models/Person.scala:5: not found: type Model
[error] class Person extends Model {
[error] ^
[error] two errors found
[error] (compile:compile) Compilation failed
[error] Total time: 4 s, completed 09-Sep-2013 11:23:00
Cheers NFV
Build.scala
look like? – Holbein