micronaut-projects / micronaut-cache

This project includes caching support for Micronaut
Apache License 2.0
29 stars 31 forks source link

Can we please provide micronaut-ehcache implementation to support jarkarta-api #811

Open aozmen121 opened 1 week ago

aozmen121 commented 1 week ago

Feature description

At the moment latest implementation("org.ehcache:ehcache:3.10.8") pulls in by default javax-api mode. however as micronaut is moving away from javax-api and incorporating jarkarta-api instead. Can you please provide jakarta-api support that is already available in ehcache:v3. e.g.

    implementation("org.ehcache:ehcache:3.10.8") {
        capabilities {
            requireCapability("org.ehcache:ehcache-jakarta")
        }
    }

see link: https://github.com/ehcache/ehcache3/releases/tag/v3.10.8

aozmen121 commented 1 week ago

@graemerocher & @sdelamo FYI would you be able to assist with this feature request?