This is an automated email from the ASF dual-hosted git repository. vy pushed a commit to branch release/1.3.1 in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git
commit 5eedf36adce5dbfdcea54802f3bb5f40771646cf Author: Volkan Yazıcı <[email protected]> AuthorDate: Thu Dec 7 10:47:07 2023 +0100 Add `project.build.outputTimestamp` Maven property --- pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pom.xml b/pom.xml index 7527d80..1c9b380 100644 --- a/pom.xml +++ b/pom.xml @@ -123,6 +123,15 @@ <!-- project version --> <revision>1.3.1</revision> + <!-- `project.build.outputTimestamp` is required to be present for reproducible builds. + We actually inherit one from the `org.apache:apache` through our parent `org.apache.logging:logging-parent`. + Though inheriting this property has two undesired consequences: + 1. `artifact:compare` dumps an `ERROR` log stating that this `property should not be inherited but defined` (apache/logging-parent#50) + 2. This value is employed in various places while creating the distribution + To mitigate these, we define a *dummy* value here and let the CI replace it during a release. + Hence, *DO NOT MANUALLY EDIT THIS VALUE*! --> + <project.build.outputTimestamp>2023-12-07T10:46:32Z</project.build.outputTimestamp> + <!-- disable `maven-site-plugin`--> <maven.site.skip>true</maven.site.skip> <maven.site.deploy.skip>true</maven.site.deploy.skip>
