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:50 UTC

[maven-site] branch master updated (5ee5ad3 -> e4c57ab)

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

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


    from 5ee5ad3  [MNGSITE-444] Add new reactor documentation for Maven 4.
     new 1ea3632  simplify instructions: remove javadoc instructions
     new e4c57ab  simplify instruction: enable Reproducible Builds mode

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 content/apt/guides/mini/guide-reproducible-builds.apt | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

[maven-site] 01/02: simplify instructions: remove javadoc instructions

Posted by hb...@apache.org.
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 1ea363266896933be8c92f98904adca2fae6764c
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Mon May 31 21:21:49 2021 +0200

    simplify instructions: remove javadoc instructions
---
 content/apt/guides/mini/guide-reproducible-builds.apt | 2 --
 1 file changed, 2 deletions(-)

diff --git a/content/apt/guides/mini/guide-reproducible-builds.apt b/content/apt/guides/mini/guide-reproducible-builds.apt
index 92d1ae5..8dd706a 100644
--- a/content/apt/guides/mini/guide-reproducible-builds.apt
+++ b/content/apt/guides/mini/guide-reproducible-builds.apt
@@ -49,8 +49,6 @@ Configuring for Reproducible Builds
    </properties>
 +--------+
 
- [[3]] Configure <<<maven-javadoc-plugin>>> with option <<<notimestamp>>> set to <<<true>>> to avoid timestamps in generated files.
-
  []
 
  You have the basics configured. The output should be reproducible now.

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

Posted by hb...@apache.org.
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>
 +--------+