I'm trying to upgrade an application from wildfly 26 to wildfly 27/28. The big step here is the javax to jakarta shift of course.
Today we're using embedded infinispan module version 9.4.16.Final downloaded from https://infinispan.org/download/. This of course leads to some classnotfoundexceptions because of references to javax-interfaces. Downloading the latest version 14.0.19 also leads to similar classnotfoundexceptions. This happens because the module doesn't contain the jakarta-version, i.e. infinispan-core-14.0.19.Final.jar
instead of infinispan-core-jakarta-14.0.19.Final.jar
.
There is also reference to a newer 15.0.0.Dev04 version of infinispan, sadly it links to a non-existing wildfly-module.
Has anybody successfully integrated embedded infinispan after wildfly 27? Is there any good guides or tips?
There is a org.infinispan.cdi.embedded module in WildFly which uses org.infinispan:infinispan-cdi-embedded-jakarta do I guess those artefacts exist. Nott sure what you are trying to acheive