executing eclipse.buildscript task on a feature misses the fragment - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:50:01Z http://stackoverflow.com/feeds/question/1046219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1046219/executing-eclipse-buildscript-task-on-a-feature-misses-the-fragment 0 executing eclipse.buildscript task on a feature misses the fragment Michael 2009-06-25T20:55:30Z 2009-06-25T23:54:06Z <p>I have a feature called foo, plugin called foo, and a single fragment foo.win32.x86.</p> <p>I should be able to execute a call to eclipse.buildscript within an ant file on a feature and have it create a build.xml for the feature, plugin, and fragment; however, all I get is the build.xml for the feature and plugin.</p> <p>The foo feature.xml:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;feature id="foo" label="%featureName" version="0.0.0.200906251500" provider-name="%providerName" plugin="foo"&gt; &lt;install-handler/&gt; &lt;description&gt; %description &lt;/description&gt; &lt;copyright&gt; %copyRight &lt;/copyright&gt; &lt;license url="license.html"&gt; %license &lt;/license&gt; &lt;plugin id="foo" download-size="0" install-size="0" version="0.0.0"/&gt; &lt;plugin id="foo.win32.x86" os="win32" arch="x86" download-size="0" install-size="0" version="0.0.0" fragment="true"/&gt; &lt;/feature&gt; </code></pre> <p>The foo plugin MANIFEST.MF file:</p> <pre><code>Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Plugin.name Bundle-SymbolicName: foo; singleton:=true Bundle-Version: 0.0.0.200906251500 Bundle-Vendor: %Plugin.providername Bundle-Localization: plugin Eclipse-LazyStart: true </code></pre> <p>The foo plugin.xml file:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;?eclipse version="3.0"?&gt; &lt;plugin&gt; &lt;!-- extension point stuff, blah --&gt; &lt;/plugin&gt; </code></pre> <p>The foo.win32.x86 MANIFEST.MF file:</p> <pre><code>Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %Plugin.name Bundle-SymbolicName: foo.win32.x86 Bundle-Version: 0.0.0.200906251500 Bundle-Vendor: %Plugin.providername Fragment-Host: foo;bundle-version="0.0.0.200906251500" Bundle-Localization: plugin </code></pre> <p>Can anyone explain why I'm not getting the build.xml for the fragment?</p> <p>If I force a call to eclipse.buildscript for the fragment it works fine, but doesn't this defeat the purpose?</p> <p>Thanks</p> http://stackoverflow.com/questions/1046219/executing-eclipse-buildscript-task-on-a-feature-misses-the-fragment/1046755#1046755 0 Answer by Andrew Niefer for executing eclipse.buildscript task on a feature misses the fragment Andrew Niefer 2009-06-25T23:54:06Z 2009-06-25T23:54:06Z <p>You will need to specify the <code>configInfo</code> attribute. The value is an '&amp;' separated list of "<code>os,ws,arch</code>" triplets. Scripts are only generated for platform specific fragments if they resolve for one of the configurations being built. If configInfo is not specified, the default will be "<code>*,*,*</code>" which means "platform independent" (which your foo.win32.x86 doesn't match).</p> <p>eg:</p> <pre><code> &lt;eclipse.buildscript elements="feature@foo" buildDirectory="${buildDirectory}" baseLocation="${baseLocation}" configInfo="win32,win32,x86" /&gt; </code></pre> <p>The help page is <a href="http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.pde.doc.user/tasks/pde%5Ffeature%5Fgenerating%5Fantcommandline.htm" rel="nofollow">here</a>, which may be helpful.</p>