Main Content

Download Infinispan

Infinispan 5.1 (Brahma)

NameVersionDescriptionSizeRelease dateLicenseRelease notesDownload
Infinispan 5.15.1.1.FINALBinaries, server and demos135.0 MB2012-02-03LGPL 2.1 
Downloads: 182
Infinispan 5.15.1.1.FINALSources7.1 MB2012-02-03LGPL 2.1 
Downloads: 54
Note: Downloads counter is updated once per day.

Infinispan 5.0 (Pagoa)

NameVersionDescriptionSizeRelease dateDownload
Infinispan 5.05.0.1.FINALBinaries, server and demos77.8 MB2011-09-12 
Downloads: 877
Infinispan 5.05.0.1.FINALSources6.3 MB2011-09-12 
Downloads: 237
Note: Downloads counter is updated once per day.

Infinispan 4.2 (Ursus)

NameVersionDescriptionSizeRelease dateLicenseDownload
Infinispan 4.24.2.1.FINALBinaries, server and demos75.1 MB2010-12-17LGPL 2.1 
Downloads: 10792
Infinispan 4.24.2.1.FINALSources19.5 MB2010-12-17LPGPL 2.1 
Downloads: 10792
Note: Downloads counter is updated once per day.

Infinispan 4.1 (Radegast)

NameVersionDescriptionSizeRelease dateLicenseDownload
Infinispan 4.14.1.0.FINALBinaries, server and demos76.4 MB2010-09-02LGPL 2.1 
Downloads: 10792
Infinispan 4.14.1.0.FINALSources5.3 MB2010-09-02LPGPL 2.1 
Downloads: 10792
Note: Downloads counter is updated once per day.

Infinispan 4.0 (Starobrno)

NameVersionDescriptionSizeRelease dateLicenseDownload
Infinispan 4.04.1.0.FINALBinaries, server and demos45.3 MB2010-09-02LGPL 2.1 
Downloads: 10792
Infinispan 4.04.0.0.FINALSources5.02010-02-23LGPL 2.1 
Downloads: 10792
Note: Downloads counter is updated once per day.

A full release history is available on sourceforge.

Using Maven?

Infinispan builds are also published to the JBoss.org Maven repository, which allows you to access Infinispan builds if your project uses Maven, Ivy, or Ant with Maven-Ant-Tasks:

               <dependency>
<groupId>org.infinispan</groupId>
<artifactId>infinispan-core</artifactId>
<version>${infinispan.version}</version>
</dependency>

To use Infinispan, we recommend enabling the JBoss repository in your settings.xml or pom.xml by adding this profile:

    <profiles>
<profile>
<!-- Repository is active unless explicitly disabled
e.g. -P!jboss-public-repository -->
<activation>
<property>
<name>jboss-public-repository</name>
<value>!false</value>
</property>
</activation>
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>

Please refer to the Maven documentation for more details on how to use this information with Maven in your project, as well as the JBoss Maven Repository User Guide.

Need a snapshot?

Please note that only formal, tagged builds are available for download as distributions, such as alphas, betas, CRs and full releases. If you want a snapshot, please either build it yourself from sources, or use the Maven Snapshots Repository.