Downloads Java Client Coordinates
Java Client Coordinates
Hot Rod Java (Stable)
Maven
Add the following to the dependencies declared in your pom.xml
file
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-client-hotrod</artifactId> <version>15.0.6.Final</version> </dependency>
Gradle
Add the following to the dependencies declared in your build.gradle
dependencies { ... implementation 'org.infinispan:infinispan-client-hotrod:15.0.6.Final' ... }
Ivy
Add the following to the dependencies declared in your ivy.xml
file
<dependencies> ... <dependency org="org.infinispan" name="infinispan-client-hotrod" version="15.0.6.Final"/> ... </dependencies>
Hot Rod Java (Dev)
Maven
Add the following to the dependencies declared in your pom.xml
file
<dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-client-hotrod</artifactId> <version>15.1.0.Dev02</version> </dependency>
Gradle
Add the following to the dependencies declared in your build.gradle
dependencies { ... implementation 'org.infinispan:infinispan-client-hotrod:' ... }
Ivy
Add the following to the dependencies declared in your ivy.xml
file
<dependencies> ... <dependency org="org.infinispan" name="infinispan-client-hotrod" version="15.1.0.Dev02"/> ... </dependencies>