This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pulsar-site.git
The following commit(s) were added to refs/heads/main by this push:
new 41607075891 Fix publishing commands
41607075891 is described below
commit 416070758913aaab65cb9a189199b95fc3511e78
Author: Lari Hotari <[email protected]>
AuthorDate: Thu Apr 23 13:42:37 2026 +0300
Fix publishing commands
---
contribute/release-process.md | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/contribute/release-process.md b/contribute/release-process.md
index cdd7f5bf8ee..f3b1cc5cc99 100644
--- a/contribute/release-process.md
+++ b/contribute/release-process.md
@@ -347,12 +347,11 @@ sdk u java $SDKMAN_JAVA_VERSION
git status
# src/settings.xml from master branch to /tmp/mvn-apache-settings.xml since
it's missing in some branches
-curl -s -o /tmp/mvn-apache-settings.xml
https://raw.githubusercontent.com/apache/pulsar/master/src/settings.xml
+curl -s -o /tmp/mvn-apache-settings.xml
https://raw.githubusercontent.com/apache/pulsar/branch-4.2/src/settings.xml
# publish artifacts
-command mvn deploy -Daether.connector.basic.parallelPut=false -DskipTests
-Papache-release --settings /tmp/mvn-apache-settings.xml
-# publish org.apache.pulsar.tests:integration and it's parent pom
org.apache.pulsar.tests:tests-parent
-command mvn deploy -Daether.connector.basic.parallelPut=false -DskipTests
-Papache-release --settings /tmp/mvn-apache-settings.xml -f tests/pom.xml -pl
org.apache.pulsar.tests:tests-parent,org.apache.pulsar.tests:integration
+# and publish org.apache.pulsar.tests:integration and it's parent pom
org.apache.pulsar.tests:tests-parent
+command mvn deploy -Daether.connector.basic.parallelPut=false -DskipTests
-Papache-release --settings /tmp/mvn-apache-settings.xml && command mvn deploy
-Daether.connector.basic.parallelPut=false -DskipTests -Papache-release
--settings /tmp/mvn-apache-settings.xml -f tests/pom.xml -pl
org.apache.pulsar.tests:tests-parent,org.apache.pulsar.tests:integration ||
echo 'ERROR: Publishing Failed!'
```
:::note