Re: [I] ehcache uses the javax instead of jakarta version [grails-spring-security]
jdaugherty closed issue #1191: ehcache uses the javax instead of jakarta version URL: https://github.com/apache/grails-spring-security/issues/1191 -- 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]
Re: [I] ehcache uses the javax instead of jakarta version [grails-spring-security]
jamesfredley commented on issue #1191: URL: https://github.com/apache/grails-spring-security/issues/1191#issuecomment-3482947977 `org.ehcache:ehcache::jakarta` is not fully compatible with Spring dependency management plugin, so let's stick with the longer syntax. -- 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]
Re: [I] ehcache uses the javax instead of jakarta version [grails-spring-security]
jamesfredley commented on issue #1191:
URL:
https://github.com/apache/grails-spring-security/issues/1191#issuecomment-3482860493
`org.ehcache:ehcache::jakarta` is an alternate for the longer syntax, which
should work with the version coming from grails-bom.
```
implementation 'org.ehcache:ehcache', {
capabilities {
requireCapability('org.ehcache:ehcache-jakarta')
}
}
```
--
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]
Re: [I] ehcache uses the javax instead of jakarta version [grails-spring-security]
jdaugherty commented on issue #1191: URL: https://github.com/apache/grails-spring-security/issues/1191#issuecomment-3482500320 Documentation PR is here: https://github.com/apache/grails-core/pull/15203 -- 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]
Re: [I] ehcache uses the javax instead of jakarta version [grails-spring-security]
jdaugherty commented on issue #1191: URL: https://github.com/apache/grails-spring-security/issues/1191#issuecomment-3482479923 @matrei yes, implementation 'org.ehcache:ehcache' should have the same change. -- 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]
Re: [I] ehcache uses the javax instead of jakarta version [grails-spring-security]
matrei commented on issue #1191: URL: https://github.com/apache/grails-spring-security/issues/1191#issuecomment-3482423101 Does this also have bearing on the upgrade guide: https://grails.apache.org/docs/latest/guide/upgrading.html#_12_19_hibernate_cache_region_factory_class (at the bottom of this section) -- 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]
