Thanks for the quick response! Apologies for my ignorance here but I i'm
just using standard maven pom reference and haven't seen any documentation
on Shiro website for jakarta classifier. is this a type of annotation?
here's a snippet of the pom
<properties>
<java.version>17</java.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<servlet.api.version>6.0.0</servlet.api.version>
<org.springframework.version>6.0.4</org.springframework.version>
*<shiro.version>1.11.0</shiro.version>*
</properties>
<dependencies>
<!--Tomcat 10.x-->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${servlet.api.version}</version>
<scope>provided</scope>
</dependency>
<!-- Authentication/Authorization -->
<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>
</dependency>
<dependency>
* <groupId>org.apache.shiro</groupId>*
* <artifactId>shiro-web</artifactId>*
* <version>${shiro.version}</version>*
</dependency>
<dependency>
<groupId>org.apache.shiro</groupId>
<artifactId>shiro-ehcache</artifactId>
<version>${shiro.version}</version>
<exclusions>
<exclusion>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
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.
>
>
>