Here is a summary of the current JBoss Cache releases.
Distributions contain documentation, tutorials, FAQs and Javadocs as well. You can also browse all documentation online.
Please visit our SourceForge download page for historical versions.
Maven
If you are using Maven, you can add dependencies to JBoss Cache jars by adding the following repositories to your pom.xml file, in your <repositories /> element.
<repository>
<id>repository.jboss.org</id>
<url>http://repository.jboss.org/maven2</url>
</repository>
<repository>
<id>snapshots.jboss.org</id>
<url>http://snapshots.jboss.org/maven2</url>
</repository>
And then adding either:
<dependency>
<groupId>org.jboss.cache</groupId>
<artifactId>jbosscache-core</artifactId>
<version>3.2.4.GA</version>
</dependency>
or
<dependency>
<groupId>org.jboss.cache</groupId>
<artifactId>jbosscache-pojo</artifactId>
<version>3.0.0.GA</version>
</dependency>
to your <dependencies /> element.