I am researching how to migrate from Drools 6.5 to 10, and the rhe recommended strategy is to perform the upgrade in stages:
* Migrate from Drools 6.x to 7.x: The shift from Drools 6 to 7 involved major changes, including the move from the old Knowledge API to the KIE API (Knowledge Is Everything).
* Migrate from Drools 7.x to 8.x: The 8.x series introduced the executable model to improve performance, requiring the kie-maven-plugin to generate sources during compilation.
* Migrate from Drools 8.x to 10.x: Drools 10 introduces new features and further refactorings, including a minimum requirement of JDK 11 and deprecation of drools-mvel
Is this correct? Or can I migrate directly from 6.5 to 10?
Thanks