I'm using the secure
and crud
modules with my app, and I've added them to application.conf as described in the tutorial. However, when I start my app, it generates a warning:
Declaring modules in application.conf is deprecated. Use dependencies.yml instead. (module.crud)
The modules then work while in dev mode, but when I deploy to my server (with play war
etc),
I get this:
13:55:40,662 WARN ~ Declaring modules in application.conf is deprecated. Use dependencies.yml instead (module.crud)
13:55:40,662 ERROR ~ Module crud will not be loaded because /var/lib/apache-tomcat-6.0.32/webapps/pat/WEB-INF/modules/crud does not exist
So, two questions: why aren't my modules getting exported, and how do I declare them in dependencies.yml? I've looked at the dependency page in the docs, and I admit that I don't really get what's going on there.
Thanks!