Hello,
I have a project that was originally designed to run with Vaadin 7 on JBoss 7.3. Now, I need to run the same project on JBoss 8+.
Since JBoss 8+ requires migrating from javax to jakarta, I tried using MPR (multiplatform runtime) because Vaadin 7 does not support jakarta directly.
However, I ran into several issues:
- The problems started when Ivy failed to fetch the required libraries.
- I manually added
mpr-core-7.0.2andmpr-v7-2.3.0.jarto the project, but I still encountered compile-time and dependency errors.
My question is:
Is it possible to run a Vaadin 7 project on JBoss 8+ using MPR (without upgrading to a newer Vaadin version)?
Can you provide guidance on how to properly configure MPR so that the Vaadin 7 project works and the old dependencies are resolved?
Thank you in advance for your support!