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 2021/05/31 19:31:52 UTC

[maven-site] 02/02: simplify instruction: enable Reproducible Builds mode

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

commit e4c57ab674bc91db6cb368c95df2e088f02211f6
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Mon May 31 21:31:46 2021 +0200

    simplify instruction: enable Reproducible Builds mode
---
 content/apt/guides/mini/guide-reproducible-builds.apt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/content/apt/guides/mini/guide-reproducible-builds.apt b/content/apt/guides/mini/guide-reproducible-builds.apt
index 8dd706a..7bd35b5 100644
--- a/content/apt/guides/mini/guide-reproducible-builds.apt
+++ b/content/apt/guides/mini/guide-reproducible-builds.apt
@@ -39,13 +39,13 @@ Configuring for Reproducible Builds
  There is no Maven version prerequisite. Everything happens at plugin level:
 
  [[1]] Upgrade your plugins to reproducible versions, particularly <<<maven-jar-plugin>>>, <<<maven-source-plugin>>>,
- <<<maven-assembly-plugin>>> and <<<maven-javadoc-plugin>>> to version 3.2.0 minimum.
+ 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 (see FAQ for future value update strategy):
+ [[2]] Enable Reproducible Builds mode for plugins, by adding <<<project.build.outputTimestamp>>> property to the project's <<<pom.xml>>>:
 
 +--------+
    <properties>
-     <project.build.outputTimestamp>2019-10-02T08:04:00Z</project.build.outputTimestamp>
+     <project.build.outputTimestamp>1</project.build.outputTimestamp>
    </properties>
 +--------+