tkobayas commented on issue #6248: URL: https://github.com/apache/incubator-kie-drools/issues/6248#issuecomment-2655756858
Hi, ``` kieServices.newKieBuilder(kieFileSystem).buildAll(); ``` means building rules with non-executable-model which requires `drools-mvel`. You have 2 choices: - Add `drools-mvel` or - Use executable-model which doesn't require `drools-mvel`. In this case, change the `buildAll` call to: ``` kieServices.newKieBuilder(kieFileSystem).buildAll(ExecutableModelProject.class); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
