Hi Gabriele,
This error usually happens when upgrading older Mendix versions because some deprecated modules or actions are no longer supported in the new runtime.
In your stacktrace, the key part is:
java.lang.IllegalArgumentException: requirement failed:
microflow action com.mendix.modules.microflowengine.actions.MicroflowCallAction
does not contain class scala.collection.immutable.$colon$colon
This indicates that something inside your project is still referencing the old MicroflowEngine actions, possibly coming from:
A module that needs re-import after upgradeA custom Java action that depends on outdated Mendix librariesIncompatible Marketplace modules (like CommunityCommons older version)
---
Steps:
1. Update Marketplace modules
At least update CommunityCommons, Encryption, Email, etc., to versions supporting 10.21.x
2. Clean & rebuild project
App Menu → Clean Deployment Folder
Then run again
3. Recompile Java actions
App Menu → Build → Deploy for Eclipse
Open in Eclipse and clean the Java project (remove old jars if added manually)
4. If still stuck → check version mismatch of .jar libraries under:
project_directory\javasource\lib
Remove any old scala-related .jars if present.
Note:
After upgrading to a major version, always refresh:
Module updates → Java actions → Rebuild → Clean Deployment