-
Notifications
You must be signed in to change notification settings - Fork 39
Fix bundles with dir-shape have needed instruction in content.xml (#128) #129
Fix bundles with dir-shape have needed instruction in content.xml (#128) #129
Conversation
Thanks for the PR. This looks good to me. All that is requires is that you sign the Eclipse Contributor Agreement (ECA) and add the Let me know if you need any help with that. |
1b02bbf
to
ad98ea9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just few minor things! Thanks.
final FeatureInformation fi = new FeatureInformation (); | ||
|
||
fi.setId ( "f1" ); | ||
fi.setId ( feature_id ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please don't use underscores. -> featureId
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for the other locations.
|
||
final List<InstallableUnit> ius = InstallableUnit.fromFeature ( fi ); | ||
@Test | ||
public void fragmentSecificPropertiesAddedToIU () throws Exception |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo: "specific"
5e03c10
to
76217a3
Compare
I think I'm done. I also rebased the the commits on master. |
Could you please rebase the branch. This should fix the issues with travis. |
76217a3
to
536a2cc
Compare
Please don't merge yet. I think there is a bug in my code. |
536a2cc
to
e235dfb
Compare
…lipse-archived#128) When a bundles has the Eclipse-BundleShape: dir manifest entry the installable unit in content.xml the touchpointData must have <instruction key='zipped'>true</instruction> Otherwise when tycho builds a product the bundle is not beeing extracted. Signed-off-by: Veselin Markov <veselin_m84@yahoo.com>
Signed-off-by: Veselin Markov <veselin_m84@yahoo.com>
Signed-off-by: Veselin Markov <veselin_m84@yahoo.com>
the genereted provides-element now has the same type as repositores built by p2. See org.eclipse.equinox.p2.publisher.eclipse.BundlesAction vor details. Signed-off-by: Veselin Markov <veselin_m84@yahoo.com>
Signed-off-by: Veselin Markov <veselin_m84@yahoo.com>
e235dfb
to
030b755
Compare
Should be fixed now. Sorry about that. |
When a bundles has the Eclipse-BundleShape: dir manifest entry the
installable unit in content.xml the touchpointData must have
true
Otherwise when tycho builds a product the bundle is not beeing
extracted.