github ehcache/ehcache3 v3.10.0
Ehcache 3.10.0

latest releases: v3.9.12-internal14, v3.10.9-internal19, v3.10.9-internal18...
2 years ago

Getting started

This new minor release of Ehcache 3 adds support for the Jakarta EE namespaced versions of the JTA (for the transactions module) and JAXB (for parsing Ehcache XML files) APIs.

As usual, it contains numerous bug fixes and enhancements.

Ehcache 3.10.0 has been released to maven central under the following coordinates:

Main module

<dependency>
  <groupId>org.ehcache</groupId>
  <artifactId>ehcache</artifactId>
  <version>3.10.0</version>
  <!-- <classifier>jakarta</classifier> -->
</dependency>

or

implementation('org.ehcache:ehcache:3.10.0') {
//  capabilities {
//    requireCapability('org.ehcache:ehcache-jakarta')
//  }
}

Transactions module

<dependency>
  <groupId>org.ehcache</groupId>
  <artifactId>ehcache-transactions</artifactId>
  <version>3.10.0</version>
  <!-- <classifier>jakarta</classifier> -->
</dependency>

or

implementation('org.ehcache:ehcache-transactions:3.10.0') {
//  capabilities {
//    requireCapability('org.ehcache:ehcache-transactions-jakarta')
//  }
}

Clustering module

<dependency>
  <groupId>org.ehcache</groupId>
  <artifactId>ehcache-clustered</artifactId>
  <version>3.10.0</version>
</dependency>

Or can be downloaded below.
Note that if you download Ehcache jar you will need one additional jar in your classpath:

Clustering kit

For clustering a kit is also provided that includes the Terracotta Server component. See below.

Further reading

Don't miss a new ehcache3 release

NewReleases is sending notifications on new releases.