This is an automated email from the ASF dual-hosted git repository.
bitstorm pushed a commit to branch wicket-10.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-10.x by this push:
new 75889eb609 Fix repository id extraction
75889eb609 is described below
commit 75889eb609d2f20bf560c85d366d47be4330a947
Author: Andrea Del Bene <[email protected]>
AuthorDate: Mon May 18 22:07:35 2026 +0200
Fix repository id extraction
---
release.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/release.sh b/release.sh
index fb1f81aff9..5389bc07f6 100755
--- a/release.sh
+++ b/release.sh
@@ -496,7 +496,7 @@ if [ $? -ne 0 ] ; then
fi
# Determine the staging repository and close it after deploying the release to
the staging area
-stagingrepoid=$(mvn
org.sonatype.plugins:nexus-staging-maven-plugin:LATEST:rc-list
-DnexusUrl=https://repository.apache.org -DserverId=apache.releases.https |
grep -v "CLOSED" | grep -Eo "(orgapachewicket-\d+)";)
+stagingrepoid=$(mvn
org.sonatype.plugins:nexus-staging-maven-plugin:LATEST:rc-list
-DnexusUrl=https://repository.apache.org -DserverId=apache.releases.https |
grep -v "CLOSED" | grep -Eo "orgapachewicket-[0-9]+" | sed
's/orgapachewicket-//';)
echo "Closing staging repository with id $stagingrepoid"
mvn org.sonatype.plugins:nexus-staging-maven-plugin:LATEST:rc-close
-DstagingRepositoryId=$stagingrepoid -DnexusUrl=https://repository.apache.org
-DserverId=apache.releases.https -Ddescription="Release has been built,
awaiting vote"