Note that there are some explanatory texts on larger screens.

plurals
  1. POexecuting eclipse.buildscript task on a feature misses the fragment
    text
    copied!<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>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload