p.s. i updated the pom to read as follows but still get compile errors
such as:
*The method getRequiredWebEnvironment(javax.servlet.ServletContext) in the
type WebUtils is not applicable for the arguments
(jakarta.servlet.ServletContext)*
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-core</artifactId>
<version>${shiro.version}</version>
<exclusions>
<exclusion>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</exclusion>
</exclusions>
* <classifier>jakarta</classifier>*
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-web</artifactId>
<version>${shiro.version}</version>
* <classifier>jakarta</classifier>*
</dependency>
On Fri, Jan 13, 2023 at 6:24 PM Lenny Primak <[email protected]> wrote:
> Are you sure you are using Jakarta classifiers for both Shiro-core and
> Shiro-web?
> Do you have an exact error you are getting?
>
> On Jan 13, 2023, at 5:13 PM, Steve Lopez <[email protected]>
> wrote:
>
>
>
> We're looking to migrate to Spring 6.x, which requires Tomcat 10 and thus
> Jakarta EE.
>
> The blogpost at
> https://shiro.apache.org/blog/2023/01/13/apache-shiro-1110-released.html
> appearsrs to suggest 1.11 now supports jakarta. however, i'm still seeing
> references to javax in WebUtils.
>
>
>