From 842d3b6185c36bc1320199ed3905f76ef7d36541 Mon Sep 17 00:00:00 2001 From: Naoki Takezoe Date: Wed, 13 Jan 2021 22:45:03 +0900 Subject: [PATCH] Fix timestamp which is set to create war file to epoch millis (#2627) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 89cff92f5..29dfe4104 100644 --- a/build.sbt +++ b/build.sbt @@ -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