in log4j-transform-maven-shade-plugin-extensions/src/main/java/org/apache/logging/log4j/maven/plugins/shade/transformer/Log4j2PluginCacheFileTransformer.java [190:198]
private void putJarEntry(JarOutputStream jos) throws IOException {
final JarEntry jarEntry = new JarEntry(PLUGIN_CACHE_FILE);
// Set time to youngest timestamp, to ensure reproducible output.
final FileTime fileTime = FileTime.fromMillis(youngestTime);
jarEntry.setLastModifiedTime(fileTime);
jos.putNextEntry(jarEntry);
}