Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Tycho and IProvisioningEventBus ?

Tycho appears to be generating additional metadata in a p2content.xml file. A normal jarred bundle has:

    <touchpointData size='1'>
      <instructions size='1'>
        <instruction key='manifest'>
          Bundle-SymbolicName: com.axelerator.platform.desktop.application;singleton:=true&#xA;Bundle-Version: 12.2.2.201205020709&#xA;
        </instruction>
      </instructions>
    </touchpointData>

and the directory shaped one has:

    <touchpointData size='1'>
      <instructions size='2'>
        <instruction key='manifest'>
          Bundle-SymbolicName: com.axelerator.platform.desktop.jboss;singleton:=true&#xA;Bundle-Version: 12.2.2.201205020709&#xA;
        </instruction>
        <instruction key='zipped'>
          true
        </instruction>
      </instructions>
    </touchpointData>

I'm not sure how that helps you though.


On 02/05/2012, at 5:12 PM, Barrie Treloar wrote:

On Wed, May 2, 2012 at 4:30 PM, Stephen Coy <steve@xxxxxxxxxxxxx> wrote:
Yep

I have two plugins, one of which has:

Eclipse-BundleShape: dir

I'm adding it to jar being built by
 <packaging>bundle</packaging>
via org.apache.felix:maven-bundle-plugin

Maybe Equinox P2 Director is looking for some other Eclipse headers
that are missing and so its not even checking for Eclipse-BundleShape
because of some other condition is failing.
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top