I use secure and crud with my application, and I added them to application.conf as described in the tutorial . However, when I launch the application, it generates a warning:
Declaring modules in application.conf is deprecated. Use dependencies.yml instead. (module.crud)
Then the modules work in dev mode, but when deployed to my server (using play war , etc.), I get the following:
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 are my modules not exported and how do I declare them in dependencies.yml? I looked at the dependencies page in the docs and I admit that I really don't understand what is going on there.
Thanks!
source share