It's not really obvious how you could use the non default package namespace in play framework 2.4.x.
The official doc simply has a one liner:
Note that in Play, the controllers, models and views package name conventions are now just that and can be changed if needed (such as prefixing everything with com.yourcompany).
This solution has the bare bone components to show how it could be done.
It showcases:
- the project folder structure
- config referencing modules from a custom package
- views referencing layouts and partials from a custom package
- views referencing models from a custom package
- views referencing helper from a sub-project library
- routes referencing controllers from a custom package
- build.sbt building solutions and internal library with custom packages
Run activator run
.