This is an automated email from the ASF dual-hosted git repository.

benw pushed a commit to branch javax
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git

commit f9096e6687e70d32f51660f925a9bb156fe97c09
Author: Ben Weidig <[email protected]>
AuthorDate: Sun Apr 5 15:58:36 2026 +0200

    TAP5-2825: tapestry-jpa-cache Java 21 support
---
 gradle/libs.versions.toml        | 10 +++++-----
 tapestry-ioc-jcache/build.gradle |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
index ed2005b4d..98f100db6 100644
--- a/gradle/libs.versions.toml
+++ b/gradle/libs.versions.toml
@@ -61,8 +61,7 @@ spring-web = "3.2.9.RELEASE"
 
 # IOC JCACHE
 
-javax-cache       = "1.0.0"
-infinispan-jcache = "7.0.0.Alpha4"
+javax-cache = "1.0.0"
 
 # WEBRESOURCES
 
@@ -165,11 +164,12 @@ spring-web = { module = "org.springframework:spring-web", 
version.ref = "spring-
 
 # IOC JCACHE
 
-javax-cache-api = { module = "javax.cache:cache-api", version.ref = 
"javax-cache" }
-javax-cache-tests = { module = "javax.cache:cache-tests", version.ref = 
"javax-cache" }
+javax-cache-api         = { module = "javax.cache:cache-api", version.ref = 
"javax-cache" }
+javax-cache-tests       = { module = "javax.cache:cache-tests", version.ref = 
"javax-cache" }
 javax-cache-test-domain = { module = "javax.cache:test-domain", version.ref = 
"javax-cache" }
+
 cache-annotations = { module = "org.jsr107.ri:cache-annotations-ri-common", 
version.ref = "javax-cache" }
-infinispan-jcache = { module = "org.infinispan:infinispan-jcache", version.ref 
= "infinispan-jcache" }
+cache-ri-impl     = { module = "org.jsr107.ri:cache-ri-impl", version.ref = 
"javax-cache" }
 
 # WEBRESOURCES
 
diff --git a/tapestry-ioc-jcache/build.gradle b/tapestry-ioc-jcache/build.gradle
index 81897ad15..09f2bff80 100644
--- a/tapestry-ioc-jcache/build.gradle
+++ b/tapestry-ioc-jcache/build.gradle
@@ -12,7 +12,7 @@ dependencies {
 
     testImplementation libs.javax.cache.tests
     testImplementation libs.javax.cache.test.domain
-    testRuntimeOnly libs.infinispan.jcache /* Just to be able to run the tests 
*/
+    testRuntimeOnly libs.cache.ri.impl /* Just to be able to run the tests */
 }
 
 tasks.named('jar', Jar) {

Reply via email to