[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.equinox] Hundreds of missing required plug-ins when trying to use eclipse.buildScript

Hi,

upgrading RSM 7.0.0.3 (built on Eclipse 3.2) to RSM 7.5.3 (built on Eclipse 3.4) broke our build script (ant call to eclipse.buildScript) somehow. I get hundreds of "Missing required plug-in ..." notifications even though they have been resolved (when checking from console). I've changed command line call to use Equinox which calls org.eclipse.ant.core.antRunner.

When checking from the console some of the plugins are marked as <<LAZY>>, but many plug-ins reported missing are in fact ACTIVE. I've tried different osgi.bundle setups but can't find the right way to do this with the new platform.

Is there a way to automatically start all the required bundles? Or what am I missing here?

------- command:
..
set JAVAEXE="C:\Program Files\IBM\SDP75\jdk\bin\java.exe"
set STARTUPJAR="C:\Program Files\IBM\SDPShared\plugins\org.eclipse.equinox.launcher_1.0.101.R34x_v20081125.jar; C:\Program Files\IBM\SDPShared\plugins\org.apache.ant_1.7.0.v200803061910\lib\ant.jar"
call %JAVAEXE% -cp %STARTUPJAR% org.eclipse.equinox.launcher.Main -configuration .\conf\osgi -application org.eclipse.ant.core.antRunner -buildfile .\build.xml %*
..



------- build.xml
..
<eclipse.buildScript elements="feature@${featureId}" buildDirectory="${tempDir}" baseLocation="C:/Program Files/IBM/SDPShared"/>
..


------- output:
..
[eclipse.buildScript] Some inter-plug-in dependencies have not been satisfied.
[eclipse.buildScript] Bundle "our.plugin":
[eclipse.buildScript] Missing required plug-in org.eclipse.emf.ecore_0.0.0.
[eclipse.buildScript] Bundle com.ibm.accessibility.doc:
[eclipse.buildScript] Missing required plug-in org.eclipse.help_[3.2.0,4.0.0).
[eclipse.buildScript] Missing required plug-in com.ibm.help.doc_[7.0.0,8.0.0).
[eclipse.buildScript] Bundle com.ibm.btools.te.xml:
[eclipse.buildScript] Missing required plug-in org.eclipse.ui_0.0.0.
[eclipse.buildScript] Missing required plug-in org.eclipse.core.runtime_0.0.0.
[eclipse.buildScript] Missing required plug-in org.eclipse.emf.ecore_0.0.0.
[eclipse.buildScript] Missing required plug-in org.eclipse.emf.ecore.xmi_0.0.0.
[eclipse.buildScript] Missing required plug-in com.ibm.btools.util.datatype_0.0.0.
[eclipse.buildScript] Missing required plug-in org.eclipse.core.resources_0.0.0.
.. (hundreds of similar errors)



------- osgi console: Framework is launched. id State Bundle 2 ACTIVE org.eclipse.core.runtime_3.4.0.v20080512 12 ACTIVE org.eclipse.core.resources_3.4.2.R34x_v20090126 19 ACTIVE org.eclipse.emf.ecore_2.4.2.v200902171115 ..

Any help would be greatly appreciated.