This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 008e4ebbaf5 [fix][build] Remove invalid profile in settings.xml that
caused gpg signing to fail (#24812)
008e4ebbaf5 is described below
commit 008e4ebbaf5808c0f859dddabd8382991f32d3aa
Author: Lari Hotari <[email protected]>
AuthorDate: Fri Oct 3 22:57:00 2025 -0700
[fix][build] Remove invalid profile in settings.xml that caused gpg signing
to fail (#24812)
---
src/settings.xml | 15 +--------------
1 file changed, 1 insertion(+), 14 deletions(-)
diff --git a/src/settings.xml b/src/settings.xml
index 80ec2f40620..b27c9356340 100644
--- a/src/settings.xml
+++ b/src/settings.xml
@@ -26,7 +26,7 @@
<username>${env.APACHE_USER}</username>
<password>${env.APACHE_PASSWORD}</password>
</server>
-
+
<!-- To stage a release of some part of Maven -->
<server>
<id>apache.releases.https</id>
@@ -34,17 +34,4 @@
<password>${env.APACHE_PASSWORD}</password>
</server>
</servers>
-
- <profiles>
- <profile>
- <id>apache</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <properties>
- <gpg.executable>${env.GPG_EXECUTABLE}</gpg.executable>
- <gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
- </properties>
- </profile>
- </profiles>
</settings>