Im uses play 2.0 and is trying to modulate the project into a subproject. The folder structure $ {project_home} /data/app/models/MyModel.java is created in $ project_home
Look Build.scala
val dataDependencies = Seq(
)
val dataProject = PlayProject(appName + "-data", appVersion, dataDependencies, path = file("data"), mainLang = JAVA)
val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(
// Add your own project settings here
).dependsOn(dataProject).aggregate(dataProject)
I ran the eclpsify play command.
In eclipse, I imported two projects, the main project and the data project.
The following error is displayed in the data project
The required library is missing in the project's "-data": '/ path / to / myprojects / data / target / scala-2.9.1 / classes_managed'
What am I doing wrong here? Any help would be appreciated
source
share