Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.1.3
-
None
-
IBM RAD v7.5
-
Patch Available
Description
Now, in feature.xml of GEP, we have this snippet:
<requires>
<import feature="org.eclipse.jst" version="2.0.0" match="greaterOrEqual"/>
</requires>
Since no "org.eclipse.jst" feature exist in RAD , we have to replace "org.eclipse.jst" feature with the sub-features of "org.eclipse.jst".
The section above can be replaced with this snippet:
<requires>
<import feature="org.eclipse.jst.common_core.feature" version="2.0.0.v200706041905-1007w311817231426"
match="greaterOrEqual"/>
<import feature="org.eclipse.jst.server_ui.feature" version="2.0.2.v200802150100-77-CT9yJXEkuiKVeQrclqTHQ3648"
match="greaterOrEqual"/>
<import feature="org.eclipse.jst.server_adapters.feature" version="2.0.2.v200802150100-787KE8iDUUEF6GwKwpHEQ"
match="greaterOrEqual"/>
<import feature="org.eclipse.jst.web_ui.feature" version="2.0.2.v200802150100-7B1DzCkuNa_RPevwkwB1iJ6z-0RH"
match="greaterOrEqual"/>
<import feature="org.eclipse.jst.enterprise_ui.feature" version="2.0.2.v200802150100-7b7_Es8EU6AXOV9QLJSees1SQoYQ"
match="greaterOrEqual"/>
</requires>
The sole plugin of "org.eclipse.jst" feature and optional sub-feature "org.eclipse.jst.webpageeditor.feature" can't be found in the plugin list of RAD. GEP doesn't require these two items, then don't need to add them into the required section.