Is it at all possible to use older Java EE libraries (with javax
package) in new Jakarta EE applications (with jakarta
package)?
All the APIs would be backwards compatible if it weren't for the trademark issue. Is there any runtime library or build tool available that can get them to work together? Is the only solution to fork old libraries and updated them manually?
I'm in particular looking at the Servlet API, but validation, persistence, webservices and mail may bite me too.
javax
imports tojakarta
imports if thejakarta
imports exist. – Alwin