Working with multiple module dependencies and jooby:run does not work.
I have the following project structure:
parent-project
|_model
|_service
|_app (contains jooby project)
- model, service and app are modules of parent-project.
- app uses service as dependency
mvn jooby:run works fine with reload on changes in app folder but I would like jooby:run to reload when when making changes in model or service.
I tried many configurations with build-helper-maven-plugin to add model and service as sources, that did not work, I also tried to include model and services sources with jooby
configuration "" it did not worked either ...
Thanks