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.1.1.Final</version> </dependency>
Gradle
Add the following to the dependencies declared in your build.gradle
dependencies { ... implementation 'org.infinispan:infinispan-client-hotrod:15.1.1.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.1.1.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.2.0.Dev01</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.2.0.Dev01"/> ... </dependencies>