tkobayas commented on issue #6216: URL: https://github.com/apache/incubator-kie-drools/issues/6216#issuecomment-2595146078
Hi @vinodkumarkv , Firstly, please use zulip (https://kie.zulipchat.com/#narrow/stream/232677-drools) or google group (https://groups.google.com/g/drools-usage/) for trouble-shooting. GH issue is used to track identified bugs. You wrote `KieBuilder kieBuilder = kieServices.newKieBuilder(kfs).buildAll();` worked, but `kieBuilder.buildAll(ExecutableModelProject.class);` failed. So it means non-executable-model worked, but executable-model failed. So the issue is related to executable-model rather than KJAR. Indeed `Person.Address` is not properly handled by executable-model code generation. I recommend to change `Person.Address` to `Address`. There is no way to make it work without the change. Even with non-executable-model, `Person.Address` results in an odd state (in 7.73.0.Final, it creates `com.example.Person` package which contains `Address` type). So I think it's not good to keep the `Person.Address` even with non-executable-model. -- 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]
