java - dependencyClasspath error on Play! 2.2 as play.db.ebean cannot be found -
i running play! 2.2 , want models extend play.db.ebean. have 1 model called event extends play.db.ebean.model. following compilation errors when try generate eclipse files (from play command line) because application cannot find play.db.ebean package:
[info] create eclipse project files project(s). [info] compiling 6 scala sources , 7 java sources c:\users\nickc\gatherme\target\scala-2.10\classes... error: cannot find symbol [error] public abstract class event_ extends play.db.ebean.model_ { [error] symbol: class model_ [error] location: package play.db.ebean [error] 1 error [error] not create eclipse project files: [error] error evaluating task 'dependencyclasspath': error
i have following in build.sbt file:
import play.project._ name := "forms" version := "1.0" val appdependencies ++= seq( javaebean, jdbc ) playjavasettings
this suggested here , in zentasks sample project. guessing build.sbt file must wrong? or not getting picked up?
any suggestions appreciated!
thank you, nick
Comments
Post a Comment