This is an automated email from the ASF dual-hosted git repository.
pauls pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git
The following commit(s) were added to refs/heads/master by this push:
new 978ffd6 FELIX-6468: fix timestamps
978ffd6 is described below
commit 978ffd67dea9c85284d574ed4e65da7e75e6fa69
Author: Karl Pauls <[email protected]>
AuthorDate: Fri Dec 3 16:45:26 2021 +0100
FELIX-6468: fix timestamps
---
main/pom.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/main/pom.xml b/main/pom.xml
index 1c1d84e..423c616 100644
--- a/main/pom.xml
+++ b/main/pom.xml
@@ -105,6 +105,9 @@
<configuration>
<tasks>
<unzip
src="${project.build.directory}/${project.artifactId}-${project.version}.jar"
dest="${project.build.directory}/classes" />
+ <touch>
+ <fileset
dir="${project.build.directory}/classes" />
+ </touch>
<jar
destfile="${project.build.directory}/${project.artifactId}-${project.version}.jar"
manifest="${project.build.directory}/classes/META-INF/MANIFEST.MF"
basedir="${project.build.directory}/classes" />
</tasks>
</configuration>