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 e1441db simplification: use install instead of deploy e1441db is described below commit e1441dbc14e659f568db0f35c0f92d180c04fb37 Author: Hervé Boutemy <hbout...@apache.org> AuthorDate: Sun Apr 5 12:34:41 2020 +0200 simplification: use install instead of deploy --- 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 8855abd..345425c 100644 --- a/content/apt/guides/mini/guide-reproducible-builds.apt +++ b/content/apt/guides/mini/guide-reproducible-builds.apt @@ -56,9 +56,9 @@ Configuring for Reproducible Builds Using {{{https://github.com/apache/maven-studies/tree/maven-buildinfo-plugin}<<<maven-buildinfo-plugin>>>}}, you can check that two builds give the same output: - [[1]] build and deploy to a staging directory: <<<mvn clean deploy -e -DskipTests -DaltDeploymentRepository=local::default::file:../stage buildinfo:buildinfo>>> + [[1]] build and install: <<<mvn clean verify -e -DskipTests buildinfo:buildinfo install:install>>> - [[2]] rebuild and check against the previous staging directory: <<<mvn clean verify -e -DskipTests buildinfo:buildinfo -Dreference.repo=file:../stage>>> + [[2]] rebuild and check against the previous install: <<<mvn clean verify -e -DskipTests buildinfo:buildinfo -Dreference.repo=central>>> []