Bundle-ActivationPolicy does not appear in the manifest
-------------------------------------------------------

                 Key: FELIX-2747
                 URL: https://issues.apache.org/jira/browse/FELIX-2747
             Project: Felix
          Issue Type: Bug
          Components: Maven Bundle Plugin
    Affects Versions: maven-bundle-plugin-2.0.1
         Environment: All
            Reporter: Don Corley
            Priority: Minor


The maven-bundle-plugin version 2.1.0 does not move the Bundle-ActivationPolicy 
from the maven instructions to the manifest.

The manifest does not include after I run the maven-bundle-plugin
Bundle-ActivationPolicy: lazy

Thanks for looking into this.

Don

Here is my plugin configuration:
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>2.1.0</version>
        <configuration>
          <instructions>
            <Export-Package>org.jbundle.thin.base.util</Export-Package>
            <Import-Package>
                *;resolution:=optional
            </Import-Package>
            
<Bundle-Activator>org.jbundle.thin.base.util.ObrUtil</Bundle-Activator>
            <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy>
          </instructions>
        </configuration>
      </plugin>

This parameter is defined here:
http://www.osgi.org/javadoc/r4v42/org/osgi/framework/Constants.html#BUNDLE_ACTIVATIONPOLICY

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to