hboutemy commented on code in PR #190: URL: https://github.com/apache/maven-jlink-plugin/pull/190#discussion_r1463035542
########## src/main/java/org/apache/maven/plugins/jlink/JLinkMojo.java: ########## @@ -510,6 +522,12 @@ private File createZipArchiveFromImage(File outputDirectory, File outputDirector throws MojoExecutionException { zipArchiver.addDirectory(outputDirectoryImage); + // configure for Reproducible Builds based on outputTimestamp value + Date lastModified = new MavenArchiver().parseOutputTimestamp(outputTimestamp); + if (lastModified != null) { Review Comment: in jlink, it's a zip, not a jar, then there are no MANIFEST.MF metadata -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@maven.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org