When I import the CRUD module using the dependencies.yml like so:
require:
- play
- play -> crud
- play -> secure
I get a Compilation error: CRUD can't be resolved to a type.
But when I do it the depreciated way, by adding:
module.crud=${play.path}/modules/crud
To the application.conf it works, but play! says adding the module via the application.conf is depreciated and I should rather do it via the dependencies.yml
Any Ideas as to why I can't import the module the recommended way?