I see this message[ERROR] /C:/.../src/main/java/com/.../CompanyCodeAuthorisedFilter.java:[17,23] package jakarta.servlet.http is not visible [ERROR] (package jakarta.servlet.http is declared in the unnamed module, but module com.... does not read it)
when I runmvn compile
in my Spring Boot project.So I tried to add thisrequires jakarta.servlet;
to my module-info.java file but it is in RED and it does not compile.Anyone knows why is that?
I triedmvn compile
and expected it to compile.