This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new 71e5f98134 Update release.py
71e5f98134 is described below
commit 71e5f98134b132ea02b560ab7ca6645729c1cefb
Author: James Bognar <[email protected]>
AuthorDate: Tue Dec 30 13:35:20 2025 -0500
Update release.py
---
pom.xml | 4 ++--
scripts/release.py | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index 0376f5cbc7..8264781432 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,8 +37,8 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
- <!-- Configure checksum algorithms: only SHA-512 (disable MD5
and SHA-1) -->
-
<aether.checksums.algorithms>SHA-512</aether.checksums.algorithms>
+ <!-- Configure checksum algorithms: MD5, SHA-1, and SHA-512 -->
+
<aether.checksums.algorithms>MD5,SHA-1,SHA-512</aether.checksums.algorithms>
<juneau.compare.version>9.0.1</juneau.compare.version>
<junit.version>5.13.4</junit.version>
diff --git a/scripts/release.py b/scripts/release.py
index 20cd6749c9..469d726236 100755
--- a/scripts/release.py
+++ b/scripts/release.py
@@ -714,7 +714,7 @@ class ReleaseScript:
staging = Path(os.environ.get('X_STAGING',
'~/tmp/dist-release-juneau')).expanduser()
juneau_dir = staging / 'git' / 'juneau'
- self.run_command(['mvn', 'deploy',
'-Daether.checksums.algorithms=SHA-512'], cwd=juneau_dir)
+ self.run_command(['mvn', 'deploy',
'-Daether.checksums.algorithms=MD5,SHA-1,SHA-512'], cwd=juneau_dir)
self.end_timer()
self.state.set_last_step('run_deploy')
@@ -775,7 +775,7 @@ class ReleaseScript:
staging = Path(os.environ.get('X_STAGING',
'~/tmp/dist-release-juneau')).expanduser()
juneau_dir = staging / 'git' / 'juneau'
- self.run_command(['mvn', 'release:perform',
'-Daether.checksums.algorithms=SHA-512'], cwd=juneau_dir)
+ self.run_command(['mvn', 'release:perform',
'-Daether.checksums.algorithms=MD5,SHA-1,SHA-512'], cwd=juneau_dir)
# Open Nexus staging repositories page
subprocess.Popen(['open',
'https://repository.apache.org/#stagingRepositories'])