If you want to use Ehcache 3 with Jakarta then you need to request that variant in your dependency declarations:
In Gradle that means:
implementation('org.ehcache:ehcache:3.10.8') {
capabilities {
requireCapability('org.ehcache:ehcache-jakarta')
}
}
In Maven it would be:
<dependency>
<groupId>org.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>3.10.8</version>
<classifier>jakarta</classifier>
</dependency>
Let me know if things don’t work out with these changes.
Chris
--
You received this message because you are subscribed to the Google Groups "ehcache-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to
ehcache-user...@googlegroups.com.
To view this discussion on the web visit
https://groups.google.com/d/msgid/ehcache-users/064a917b-af51-4449-83d2-b217fa0eb511n%40googlegroups.com.