ifurnadjiev opened a new issue, #39:
URL: https://github.com/apache/tomcat-jakartaee-migration/issues/39
When "javax.servlet.*" package is specified in the MANIFEST.MF with version
constraints like:
```
Import-Package: javax.servlet;version="[3.1.0,5.0.0)",
javax.servlet.http;version="[3.1.0,5.0.0)",
```
it is converted to:
```
Import-Package: jakarta.servlet;version="[3.1.0,5.0.0)",
jakarta.servlet.http;version="[3.1.0,5.0.0)",
```
and leads to unresolved dependencies in OSGi environment.
Removing or updating the version constraint to include 5 will fix the
problem.
--
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]