Upgrade build to Gradle 8.10

Closes gh-41980
This commit is contained in:
Andy Wilkinson
2024-08-21 12:51:23 +01:00
parent 275d366bec
commit d756bf4e86
24 changed files with 99 additions and 94 deletions

View File

@@ -59,27 +59,32 @@ dependencies {
def testCaffeine = tasks.register("testCaffeine", Test) {
description = "Runs the tests against Caffeine"
classpath = sourceSets.test.runtimeClasspath + configurations.caffeine
testClassesDirs = testing.suites.test.sources.output.classesDirs
}
def testCouchbase = tasks.register("testCouchbase", Test) {
description = "Runs the tests against Couchbase"
classpath = sourceSets.test.runtimeClasspath + configurations.couchbase
testClassesDirs = testing.suites.test.sources.output.classesDirs
}
def testEhcache = tasks.register("testEhcache", Test) {
description = "Runs the tests against Ehcache"
classpath = sourceSets.test.runtimeClasspath + configurations.ehcache
testClassesDirs = testing.suites.test.sources.output.classesDirs
systemProperties = ["spring.cache.jcache.config" : "classpath:ehcache3.xml"]
}
def testHazelcast = tasks.register("testHazelcast", Test) {
description = "Runs the tests against Hazelcast"
classpath = sourceSets.test.runtimeClasspath + configurations.hazelcast
testClassesDirs = testing.suites.test.sources.output.classesDirs
}
def testInfinispan = tasks.register("testInfinispan", Test) {
description = "Runs the tests against Infinispan"
classpath = sourceSets.test.runtimeClasspath + configurations.infinispan
testClassesDirs = testing.suites.test.sources.output.classesDirs
systemProperties = ["spring.cache.jcache.config" : "classpath:infinispan.xml"]
}