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/06/19 16:13:01 UTC

[maven-site] branch master updated: simplify test instructions

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 a7350b5  simplify test instructions
a7350b5 is described below

commit a7350b5358a33ef2264b0f343544e1fc887d8e42
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Sat Jun 19 18:12:55 2021 +0200

    simplify test instructions
---
 content/apt/guides/mini/guide-reproducible-builds.apt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/content/apt/guides/mini/guide-reproducible-builds.apt b/content/apt/guides/mini/guide-reproducible-builds.apt
index 86dfe69..d0ea8e2 100644
--- a/content/apt/guides/mini/guide-reproducible-builds.apt
+++ b/content/apt/guides/mini/guide-reproducible-builds.apt
@@ -61,9 +61,9 @@ Configuring for Reproducible Builds
  Using {{{/plugins/maven-artifact-plugin/buildinfo-mojo.html}<<<maven-artifact-plugin>>>'s <<<buildinfo>>> goal}},
  you can check that the second build of your project produce the same output than an initial build:
 
- [[1]] build and <<<install>>> your project: <<<mvn clean install -e -DskipTests>>> (don't hesitate to customize arguments to better match your project)
+ [[1]] build and <<<install>>> your project: <<<mvn clean install>>> (don't hesitate to customize arguments to better match your project)
 
- [[2]] rebuild (<<<verify>>> only, without installing) and check against the previous install: <<<mvn clean verify -e -DskipTests artifact:buildinfo -Dreference.repo=central>>>
+ [[2]] rebuild (<<<verify>>> only, without installing) and check against the previous install: <<<mvn clean verify artifact:buildinfo -Dreference.repo=central>>>
 
  []