You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by mc...@apache.org on 2008/01/09 18:08:38 UTC

svn commit: r610462 - /felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java

Author: mcculls
Date: Wed Jan  9 09:08:32 2008
New Revision: 610462

URL: http://svn.apache.org/viewvc?rev=610462&view=rev
Log:
FELIX-451: remove Include-Resource header from final bundle manifest

Modified:
    felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java

Modified: felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
URL: http://svn.apache.org/viewvc/felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java?rev=610462&r1=610461&r2=610462&view=diff
==============================================================================
--- felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java (original)
+++ felix/trunk/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java Wed Jan  9 09:08:32 2008
@@ -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());