You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by mi...@apache.org on 2023/01/15 11:21:51 UTC

[maven-site-plugin] branch master updated: use non-deprecated method

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 79de4820 use non-deprecated method
79de4820 is described below

commit 79de48202975fc8ff6a1a779c1c638d5a1d73320
Author: Michael Osipov <mi...@apache.org>
AuthorDate: Sun Jan 15 12:21:42 2023 +0100

    use non-deprecated method
---
 src/main/java/org/apache/maven/plugins/site/render/SiteJarMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/maven/plugins/site/render/SiteJarMojo.java b/src/main/java/org/apache/maven/plugins/site/render/SiteJarMojo.java
index 8471aed9..8880052d 100644
--- a/src/main/java/org/apache/maven/plugins/site/render/SiteJarMojo.java
+++ b/src/main/java/org/apache/maven/plugins/site/render/SiteJarMojo.java
@@ -193,7 +193,7 @@ public class SiteJarMojo
         archiver.setOutputFile( siteJar );
 
         // configure for Reproducible Builds based on outputTimestamp value
-        archiver.configureReproducible( outputTimestamp );
+        archiver.configureReproducibleBuild( outputTimestamp );
 
         if ( !siteDirectory.isDirectory() )
         {