1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Remove the Built-At, Built-By and Built-On entries in the manifest of the jar files to improve the build reproducibility
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/zookeeper-contrib/zookeeper-contrib-zooinspector/build.xml
+++ b/zookeeper-contrib/zookeeper-contrib-zooinspector/build.xml
@@ -57,9 +57,6 @@
<jar jarfile="${jarname}">
<manifest>
<attribute name="Main-Class" value="org.apache.zookeeper.inspector.ZooInspector" />
- <attribute name="Built-By" value="${user.name}" />
- <attribute name="Built-At" value="${build.time}" />
- <attribute name="Built-On" value="${host.name}" />
<attribute name="Implementation-Title" value="org.apache.zookeeper" />
<attribute name="Implementation-Version" value="${revision}" />
<attribute name="Implementation-Vendor" value="The Apache Software Foundation" />
|