- 
        1. Re: Infinispan 9.2.3 bom reference infinispan-remote 9.2.3.Final does not existgalder.zamarreno Jun 6, 2018 4:52 AM (in response to andreas.oh)infinispan-remote is an uber jar dependency. Uber jar dependencies are not designed for maven projects, so remove that. The minimal dependency is: <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-client-hotrod</artifactId> </dependency> If you need remote query you might need: <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-query-dsl</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-remote-query-client</artifactId> </dependency> Cheers Galder 
- 
        2. Re: Infinispan 9.2.3 bom reference infinispan-remote 9.2.3.Final does not existandreas.oh Jun 6, 2018 3:33 PM (in response to galder.zamarreno)Hi, Thanks for the correction. I picked that dependency up from the GitHub - jboss-developer/jboss-jdg-quickstarts: Quickstarts (or examples, or samples) for Infinispan. In the hotrod-endpoint example, which is why I assumed it was correct. Now it works with the version I will use. Regards Andreas. 
- 
        3. Re: Infinispan 9.2.3 bom reference infinispan-remote 9.2.3.Final does not existgalder.zamarreno Jun 11, 2018 12:13 PM (in response to andreas.oh)Oh right, we probably forgot to update that. I'll update it right away. 
- 
        4. Re: Infinispan 9.2.3 bom reference infinispan-remote 9.2.3.Final does not existgalder.zamarreno Jun 12, 2018 8:23 AM (in response to andreas.oh)I've sent a pull request to fix this: https://github.com/jboss-developer/jboss-jdg-quickstarts/pull/204 
 
    