This is an automated email from the ASF dual-hosted git repository.
thiagohp pushed a commit to branch javax
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to refs/heads/javax by this push:
new 3085c451d Fixing generateChecksums Gradle task
3085c451d is described below
commit 3085c451d338169f52c89460cb73996fc7753a00
Author: Thiago H. de Paula Figueiredo <[email protected]>
AuthorDate: Sun Feb 22 11:41:05 2026 -0300
Fixing generateChecksums Gradle task
---
build.gradle | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index 4785894ff..04827daa2 100755
--- a/build.gradle
+++ b/build.gradle
@@ -490,7 +490,7 @@ if (canDeploy) {
description 'Creates MD5/SHA256 checksums for archives of source and
JavaDoc'
source tasks.withType(Zip)
- outputDir = layout.buildDirectory.dir('checksums')
+ outputDir = layout.buildDirectory.dir('checksums').get().getAsFile()
}
// This requires that you have the apacheArchivesFolder property
configured in your
@@ -511,7 +511,7 @@ if (canDeploy) {
group 'Release artifact'
description 'Copies build archives (source, bin, docs) to a configured
deployment folder, along with MD5 and SHA-256 checksums and PGP signatures (if
signing is enabled)'
- destinationDirectory = file(archiveDeployFolder.get())
+ destinationDir = file(archiveDeployFolder.get())
from tasks.generateChecksums
from configurations.uploads.allArtifacts.files