avareno opened a new issue, #2271: URL: https://github.com/apache/shiro/issues/2271
### Search before asking - [x] I had searched in the [issues, **including closed issues**](https://github.com/apache/shiro/issues?q=is%3Aissue) and found no similar issues. ### Question I have been recently migrating a service from java8 to java21 that used the shiro-spring-boot-starter package (https://mvnrepository.com/artifact/org.apache.shiro/shiro-spring-boot-starter). In this service I use the "BearerHttpAuthenticationFilter" class. When migrating I upgraded the package to the latest version (2.0.5). Unfortunately the class I used even in 2.0.5 uses javax instead of jakarta (hence breaking compilation to java21). Is there a package/work around that I missed to this issue? code: ``` <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring-boot-starter</artifactId> <version>2.0.5</version> </dependency> ``` compile error due to the use of javax: `cannot access javax.servlet.Filter` -- 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]
