Downloads Dependency Coordinates

Dependency Coordinates

Maven

Add the following to the dependencies declared in your pom.xml file

        <dependency>
          <groupId>org.infinispan</groupId>
          <artifactId>infinispan-core</artifactId>
          <version>15.0.2.Final</version>
        </dependency>
    
Gradle

Add the following to the dependencies declared in your build.gradle

        dependencies {
          ...
          implementation 'org.infinispan:infinispan-core:15.0.2.Final'
          ...
        }
    
Ivy

Add the following to the dependencies declared in your ivy.xml file

        <dependencies>
          ...
          <dependency org="org.infinispan" name="infinispan-core" version="15.0.2.Final"/>
          ...
        </dependencies>