This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/master by this push:
new 311ad35a92 Rename POM Log4j* properties
311ad35a92 is described below
commit 311ad35a925b115f54fb959de22a43bb3bebc0e2
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Wed Feb 8 19:10:16 2023 +0100
Rename POM Log4j* properties
Due to a `maven-bundle-plugin` bug, properties that start with a capital
letter end up in the manifest, hence we need to rename them.
---
pom.xml | 26 ++++++++++++--------------
1 file changed, 12 insertions(+), 14 deletions(-)
diff --git a/pom.xml b/pom.xml
index 7481f50aa5..0659a7c2cb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -223,7 +223,7 @@
<connection>scm:git:https://github.com/apache/logging-log4j2.git</connection>
<developerConnection>scm:git:https://github.com/apache/logging-log4j2.git</developerConnection>
<url>https://github.com/apache/logging-log4j2</url>
- <tag>log4j-${Log4jReleaseVersion}</tag>
+ <tag>log4j-${log4jReleaseVersion}</tag>
</scm>
<properties>
@@ -232,10 +232,10 @@
Release-specific properties
=========================== -->
<log4jParentDir>${basedir}</log4jParentDir>
- <Log4jReleaseVersion>3.0.0</Log4jReleaseVersion>
- <Log4jReleaseManager>Ralph Goers</Log4jReleaseManager>
- <Log4jReleaseKey>B3D8E1BA</Log4jReleaseKey>
- <Log4jSigningUserName>[email protected]</Log4jSigningUserName>
+ <log4jReleaseVersion>3.0.0</log4jReleaseVersion>
+ <log4jReleaseManager>Ralph Goers</log4jReleaseManager>
+ <log4jReleaseKey>B3D8E1BA</log4jReleaseKey>
+ <log4jSigningUserName>[email protected]</log4jSigningUserName>
<!-- =================
Common properties
@@ -1767,14 +1767,12 @@
<moduleExcludes>
<xdoc>navigation.xml</xdoc>
</moduleExcludes>
- <asciidoc>
- <attributes>
- <!-- copy any site properties wanted in asciidoc files -->
- <Log4jReleaseVersion>${Log4jReleaseVersion}</Log4jReleaseVersion>
- <Log4jReleaseManager>${Log4jReleaseManager}</Log4jReleaseManager>
- <Log4jReleaseKey>${Log4jReleaseKey}</Log4jReleaseKey>
- </attributes>
- </asciidoc>
+ <attributes>
+ <!-- copy any site properties wanted in asciidoc files -->
+ <Log4jReleaseVersion>${log4jReleaseVersion}</Log4jReleaseVersion>
+ <Log4jReleaseManager>${log4jReleaseManager}</Log4jReleaseManager>
+ <Log4jReleaseKey>${log4jReleaseKey}</Log4jReleaseKey>
+ </attributes>
</configuration>
<dependencies>
<dependency>
@@ -1903,7 +1901,7 @@
</systemProperty>
<systemProperty>
<key>log4j.changelog.releaseVersion</key>
- <value>${Log4jReleaseVersion}</value>
+ <value>${log4jReleaseVersion}</value>
</systemProperty>
</systemProperties>
</configuration>