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


