You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2020/07/11 06:27:47 UTC

[maven-site] branch master updated: more extensive timestamp update strategies

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 543bb41  more extensive timestamp update strategies
543bb41 is described below

commit 543bb4123c1244e414640446ebe5fb8b7f7eb03f
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Jul 11 08:27:39 2020 +0200

    more extensive timestamp update strategies
---
 content/apt/guides/mini/guide-reproducible-builds.apt | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/content/apt/guides/mini/guide-reproducible-builds.apt b/content/apt/guides/mini/guide-reproducible-builds.apt
index 3d3077a..ec9d9f0 100644
--- a/content/apt/guides/mini/guide-reproducible-builds.apt
+++ b/content/apt/guides/mini/guide-reproducible-builds.apt
@@ -40,7 +40,7 @@ Configuring for Reproducible Builds
 
  [[1]] Upgrade your plugins to reproducible versions, particularly <<<maven-jar-plugin>>>, <<<maven-source-plugin>>> and <<<maven-assembly-plugin>>> to version 3.2.0 minimum.
 
- [[2]] Add a <<<project.build.outputTimestamp>>> property to the project's pom.xml with the timestamp value that will be used in zip/jar/tar archives:
+ [[2]] Add a <<<project.build.outputTimestamp>>> property to the project's pom.xml with the timestamp value that will be used in zip/jar/tar archives (see FAQ for future value update strategy):
 
 +--------+
    <properties>
@@ -95,7 +95,9 @@ Configuring for Reproducible Builds
 
  * Q. Can the <<<project.build.outputTimestamp>>> property be updated automatically at release time?
 
-   A. Yes, you'll need the maven-release-plugin version 3.0.0-M1 or later: see {{{https://issues.apache.org/jira/browse/MRELEASE-1029}MRELEASE-1029}}
+   A. Yes. Details depend on your release process tooling: if you use maven-release-plugin, you'll need version 3.0.0-M1 or later
+   (see {{{https://issues.apache.org/jira/browse/MRELEASE-1029}MRELEASE-1029}}). If you have a custom release process tooling, you'll
+   need to add the feature to your tooling. Don't hesitate to share your questions or solution on {{{/mailing-lists.html}user mailing-list}}.
  
  * Q. Which additional plugins need to be updated for Reproducible Builds?