This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch grails-geb in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 90da5c0c91f0b928ccf26d19aa8463520509fbbc Author: James Daugherty <[email protected]> AuthorDate: Sun Apr 20 18:21:18 2025 -0400 Prevent caching the extractTckJar task since it skips on windows --- gradle/grails-data-tck-config.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/gradle/grails-data-tck-config.gradle b/gradle/grails-data-tck-config.gradle index 772e823c22..4d166e22ca 100644 --- a/gradle/grails-data-tck-config.gradle +++ b/gradle/grails-data-tck-config.gradle @@ -29,6 +29,7 @@ TaskProvider<Sync> extractTck = tasks.register('extractTckJar', Sync).configure it.from { zipTree(configurations.tck.singleFile) } it.into(layout.buildDirectory.dir('extracted-tck-classes')) it.finalizedBy(tasks.withType(Test)) + it.outputs.updateWhen { false } // force the task to not cache } tasks.withType(Test).configureEach {
