I am trying to integrate Drools into my Dropwizard application, where I need to execute 4 agenda groups sequentially. The execution should follow these rules:
- Each agenda group should execute one after another.
- If a match is found in an agenda group, it should stop further execution within that group and proceed to the next group.
- The rules should be loaded once per environment, meaning singleton rule loading using a
.drl
file stored in the environment-specific YAML configuration.