-
Notifications
You must be signed in to change notification settings - Fork 488
Closed
Description
This was originally reported as a Spring Boot issue. It looks like the problem was introduced in this commit which accidentally upgraded a number of Jakarta EE dependencies to their EE 9 versions.
Looking at the code, I couldn't find any direct usage of the EE 9 dependencies, other than one in buildSrc
:
$ find . -name "*.java" | xargs grep "import jakarta"
./buildSrc/src/test/resources/samples/integrationtest/withpropdeps/src/integration-test/java/sample/TheTest.java:import jakarta.servlet.http.HttpServletRequest;
In addition to correcting the version numbers, perhaps some dependencies could be removed altogether?