When I import a CRUD module using dependencies.yml as follows:
require: - play - play -> crud - play -> secure
I get a compilation error: CRUD cannot be resolved for a type.
But when I do it in a depreciated way, adding:
module.crud=${play.path}/modules/crud
In application.conf it works, but it plays! says adding a module through application.conf is depreciating and I have to do it through dependencies.yml
Any ideas as to why I cannot import the module in the recommended way?
source share