commit | 8f21a4a82a156f421f4bf92d6f78d3e14b4e0e9d | [log] [tgz] |
---|---|---|
author | Stuart McCulloch <mcculls@apache.org> | Wed Jan 09 17:08:32 2008 +0000 |
committer | Stuart McCulloch <mcculls@apache.org> | Wed Jan 09 17:08:32 2008 +0000 |
tree | b13401d4ed81b4b8fa879427f4783f20a1fc637a | |
parent | 80bf5e3f59053212aabbd825ca2d71794b7e1225 [diff] |
FELIX-451: remove Include-Resource header from final bundle manifest git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@610462 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java index 8fb23da..71f957c 100644 --- a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java +++ b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
@@ -666,6 +666,9 @@ properties.put(Analyzer.IMPORT_PACKAGE, "*"); properties.put(Analyzer.BUNDLE_VERSION, project.getVersion()); + // remove the verbose Include-Resource entry from generated manifest + properties.put(Analyzer.REMOVE_HEADERS, Analyzer.INCLUDE_RESOURCE); + this.header(properties, Analyzer.BUNDLE_DESCRIPTION, project .getDescription()); StringBuffer licenseText = this.printLicenses(project.getLicenses());