Fix timestamp which is set to create war file to epoch millis (#2627)

This commit is contained in:
Naoki Takezoe
2021-01-13 22:45:03 +09:00
committed by GitHub
parent 086437ca4f
commit 842d3b6185

View File

@@ -187,7 +187,7 @@ executableKey := {
manifest.getMainAttributes put (AttrName.MAIN_CLASS, "JettyLauncher")
val outputFile = workDir / warName
IO jar (contentMappings.map { case (file, path) => (file, path.toString) }, outputFile, manifest, Some(
System.currentTimeMillis() / 1000
System.currentTimeMillis()
))
// generate checksums