active questions tagged eclipse-pde - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:16:49Z http://stackoverflow.com/feeds/tag/eclipse-pde http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/505389/how-do-i-update-an-eclipse-template-variable-on-the-fly 0 How do I update an Eclipse template variable on the fly? Nocturne 2009-02-02T23:13:49Z 2009-11-28T09:00:02Z <p>I've added the following new Eclipse template via extension point. It simply adds a template for a sample <em>testTag</em> tag.</p> <pre><code>&lt;!-- Add code template --&gt; &lt;extension point="org.eclipse.ui.editors.templates"&gt; &lt;template autoinsert="true" contextTypeId="html_tag" description="[Description] Template populated by Snippet values ***" id="org.eclipse.jst.jsf.ui.newHtmltag" name="testTag"&gt; &lt;pattern&gt; &lt;![CDATA[ &lt;testTag style="background: ${color}"&gt;&lt;/testTag&gt; ]]&gt; &lt;/pattern&gt; &lt;/template&gt; &lt;resolver contextTypeId="html_tag" type="src" class="TestTagTemplateVariableResolver"&gt; &lt;/resolver&gt; &lt;/extension&gt; </code></pre> <p>What I'd cannot figure out is how to change the value of the $(color) variable at runtime. More specifically, when the user presses Ctrl+Space (or the equivalent for content-assist) and types in "testTag" and presses Enter -- instead of the "color" placeholder text, I'd like it replaced by some other text value I have in another class. How do I do this?</p> http://stackoverflow.com/questions/1336389/hudson-job-does-not-stop-why 0 Hudson job does not stop - why? Max 2009-08-26T17:42:06Z 2009-10-28T20:46:35Z <p>Hello!</p> <p>My automated build and tests are up and running, everything works fine. Im am using hudson and the pde build (configured with pluginbuilder). </p> <p>When the build succeeds everything is fine, the hudson ball turns blue and so on.</p> <p>But when something goes wrong and the build or tests fail - the Hudson job does NOT end. I am invoking the headless pde build using this batch command:</p> <pre><code>cd\ cd %ECLIPSEDIR% echo START PDE BUILD! eclipsec -data %ECLIPSEWS% -application org.eclipse.ant.core.antRunner -buildfile %BUILDFILE% </code></pre> <p>Why does it not stop when the antRun is over?</p> http://stackoverflow.com/questions/1550299/eclipse-how-to-run-plugin-test-as-part-of-local-build 0 Eclipse: how to run plugin test as part of local build Dmitriy Matveev 2009-10-11T09:50:44Z 2009-10-26T09:31:55Z <p>Hello! Due to incomplete understanding of eclipse infrastructure I have one problem. Historically we have one ugly thing in our build procedure. It looks like following:<br /> After eclipse builds entire workspace there is one incomplete thing in local build of plugins. It is some data file which is currently built during execution of special plugin test (which is actually tests nothing, but do generation of necessary data). It isn't necessary to execute that test after any change in workspace. Actually that needed only after changes in parts of code which is touched very rarely. But if changes in that parts of code are made then the build became unusable before update of that special data file. That file is now stored on CVS since now it can be created only locally, but it's necessary in product build.<br /> I want to change build procedure in such way that this plugin test will be executed during workspace build procedure so it will be unnecessary to have manual runs of it. I've tried to write ant file which will run that test using templates from org.eclipse.test/library.xml, but the plugin didn't loaded. I don't know why this happens, but I'm afraid that this can happen due to absence of test plugins in my working copy of eclipse.<br /> I've read some articles about running plugin tests in batch mode, but they only strengthen my feeling about necessity of separate eclipse copy for testing developed plugins.<br /> We're using ant for plugin builds and the entire structure of these scripts is very complex, so I think it will be impossible to make global changes in build procedure on top level. Which options do I have to finish my task? Maybe someone already had a similar experience...</p> <p>Please note, that in fact I want to get rid of that test in favor of some special eclipse application, but I think it isn't important right now, since I believe that my problem can be more general than running plugin tests.</p> http://stackoverflow.com/questions/241131/how-do-i-attach-source-code-locations-to-plugins-in-my-eclipse-rcp-target-platfor 0 How do I attach source code locations to plugins in my Eclipse RCP target platform? jamesh 2008-10-27T19:29:28Z 2009-10-19T22:24:52Z <p>I've got a workspace with multiple RCP plugin projects.</p> <p>We've set the target platform, so we can build against a standard set of plugins, but are not able to see source code and Javadoc for all the platform plugins.</p> <p>The Windows -> Preferences -> Plug-in Development -> Target Platform -> Source Code Locations page doesn't seem to have any effect when I add the eclipse directory (it only allows you to add directories). </p> <p>Copying the source jars from the eclipse directory into the target platform has a similar effect.</p> <p>What am I doing wrong? How do I attach a set of Source jars to my target platform?</p> http://stackoverflow.com/questions/1559860/update-site-creation-automation 2 Update Site Creation Automation Michal 2009-10-13T12:18:51Z 2009-10-13T21:08:43Z <p>Hi,</p> <p>I've developed an eclipse plug in, and created a feature and an update site projects inside eclipse to publish it. What i am looking for, is a way to automate the process of creating my update site during our automatic build process through a command line rather that manually throught the UI of the update site project.</p> <p>It seems to me that large projects must use an automated process, and that it should be quite straightforward, but didn't find any simple reference on how to do it in the web.</p> <p>Thank a lot in advance! Michal. </p> http://stackoverflow.com/questions/1555047/hiding-tab-in-pde 1 hiding tab in pde Ido 2009-10-12T14:54:04Z 2009-10-13T08:17:15Z <p>Hi, I have an editor (emf editor). And I only want one of the tabs in the editor. If I do not add the other pages, I still see one tab in the tab selection. Can I hide the tab, so the user will not see it is a multipageeditor?</p> http://stackoverflow.com/questions/310704/access-project-directory-from-eclipse-plugin 1 access project directory from eclipse plugin roei 2008-11-22T01:38:34Z 2009-10-09T10:49:56Z <p>This is a question already asked by someone:</p> <p><a href="http://stackoverflow.com/questions/242032/eclipse-project-directory">http://stackoverflow.com/questions/242032/eclipse-project-directory</a></p> <p>The answer was good: using ResourcesPlugin. But for some reason, under no circoumstances will my Ganymede eclipse recognise the existence of "org.eclipse.core.resources" package which contains ResourcesPlugin.</p> <p>Why is that?</p> http://stackoverflow.com/questions/1494921/running-eclipse-plug-in-tests-in-non-ui-thread 1 Running Eclipse Plug-in tests in non-ui thread JesperE 2009-09-29T21:00:28Z 2009-09-30T07:20:15Z <p>How do I run a Eclipse JUnit plug-in test in a non-ui thread when running the tests from the command-line? In the launch configuration dialog I can uncheck the checkbox "Run in UI thread", but how do I do that when running plug-in tests on the command-line?</p> <p>EDIT: It seems as if <code>org.eclipse.pde.junit.runtime.nonuithreadtestapplication</code> is what the PDE launch uses when running tests in a non-UI thread, but when I try using that, I get "parameter '-port' not found":</p> <pre> Loading logger configuration: c:\work\dev\tooticki\core\ide\eclipse\plugins\com.iar.ide.tests\logging.properties 23:42:51,349 [main ] INFO ew - Starting application: class com.iar.ew.Application Exception in thread "WorkbenchTestable" java.lang.IllegalArgumentException: Error: parameter '-port' not specified at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.defaultInit(RemoteTestRunner.java:303) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.init(RemotePluginTestRunner.java:83) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.NonUIThreadTestApplication.runTests(NonUIThreadTestApplication.java:23) at org.eclipse.ui.internal.testing.WorkbenchTestable$1.run(WorkbenchTestable.java:71) at java.lang.Thread.run(Thread.java:619) </pre> http://stackoverflow.com/questions/1477819/eclipse-pde-ant-build-script-generation-failing-due-to-binary-cycles 0 Eclipse PDE Ant Build Script Generation Failing Due to Binary Cycles Mark 2009-09-25T14:59:56Z 2009-09-29T21:25:58Z <p>I'm trying to compile down a set of plug-ins (ultimately OSGi bundles) into a feature using Eclipse PDE tools. I have a custom Target Platform based on the Spring framework.</p> <p>When I export the feature through Eclipse's Export Wizard the feature builds successfully, however, when I try to generate an Ant build script from the feature.xml file I receive an error about "cycles". After doing some research, I found out there's an "Allow for binary cycles in target platform" checkbox in the Export Wizard -- unchecking it produces the same result I see when trying to use PDE tools to generate the Ant build file.</p> <p>I've tried saving the Ant build file from the Export Wizard, but when I execute the Ant build file I receive the same error indicating a cycle exists (and it references the target platform bundles).</p> <p>Additionally, I've tried setting "allowBinaryCycles = true" in the build.properties file and also as a property on the Ant Build script -- neither affected the result.</p> <p>How do I run the generated Ant build file from the Export Wizard such that binary cycles are allowed in the target platform?</p> <p>Edit: To be clear, the error here exists within the Target Platform (ie: the Spring Framework!). It turns out a cycle exists in Spring Framework between the Context and ORM bundles. This is somewhat annoying, and two decent workarounds exist:</p> <ol> <li>Exclude the ORM bundle if it's unneeded (turns out this was my best solution)</li> <li>Remove the dynamic dependency on the Context bundle from the ORM bundle.</li> </ol> <p>Some discussion on the <a href="http://forum.springsource.org/showthread.php?t=63250" rel="nofollow">Spring Forums</a> assisted in resolving this issue.</p> <p>These solutions are particular to Spring, of course. There seems to be a second issue -- this time with Eclipse as a builder -- that the option to allow these binary cycles (however wrong and awful they may be) only exists in the GUI version of the builder. One would hope that eventually this option will make its way into the Ant build tasks.</p> http://stackoverflow.com/questions/825899/eclipse-pde-popup-extensions-for-cdt 0 Eclipse PDE Popup Extensions for CDT rodschultz 2009-05-05T16:58:54Z 2009-09-13T16:00:00Z <p>I just moved my plugin from Version 3.3.2 of Eclipse to Version 3.4.1. The popup menu extensions I added to the project navigator (via Object Contribution IFile) do not appear for C++ executables. IResource object Contributions to not appear on the Debug and Release folders. Have contributions been disabled for these types? Is there someway to extend the context menu on these objects?</p> http://stackoverflow.com/questions/255370/automating-unit-tests-junit-for-eclipse-plugin-development 4 Automating unit tests (junit) for Eclipse Plugin development rcreswick 2008-11-01T01:20:41Z 2009-09-03T14:20:44Z <p>I am developing Eclipse plugins, and I need to be able to automate the building and execution of the test suite for each plugin. (Using Junit)</p> <p>Test are working within Eclipse, and I can break the plugins into the actual plugin and a fragment plugin for unit testing as described <a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.test/testframework.html?view=co" rel="nofollow">here</a>, <a href="http://rcpquickstart.com/2007/08/06/running-automated-tests-with-pde-build/" rel="nofollow">here</a> and in a couple places <a href="http://eclipsenuggets.blogspot.com/2007/09/6-great-links-for-eclipse-build.html" rel="nofollow">here</a>.</p> <p>However, each of the approaches above results in the same issue: The java ant task/commandline command that issues the build or should trigger the test, generates no observable side effects, and returns the value "13". I've tried everything I can find, and I've learned a fair bit about how Eclipse starts up (eg: since v3.3 you can no longer use startup.jar -- it doesn't exist -- but you should use <a href="http://blog.ciscavate.org/2008/11/treat-your-mailing-lists-like-reference-documents-please.html" rel="nofollow">org.eclipse.equinox.launcher</a>). Unfortunately, while that is apparently necessary information, it is far from sufficient.</p> <p>I am working with Eclipse 3.4, Junit 4.3.1 (the org.junit4 bundle, but I would much rather use JUnit 4.4. See <a href="http://stackoverflow.com/questions/251791">here</a>.)</p> <p>So, my question is: How exactly do you automate the build and testing of Eclipse plugins? </p> <p><em>Edit:</em> To clarify, I <em>want</em> to use something like ant + cruise control, but I can't even get the unit tests to run <em>at all</em> outside of Eclipse. I say "something like" because there are other technologies that accomplish the same thing, and I am not so picky as to discard a solution that works just because it's using say, Maven or Buckminster, if those technologies make this substantially easier.</p> <p><em>Edit2:</em> The 'Java Result 13' mentioned above seems to be caused by the inability to find the coretestrunner. From the log:</p> <pre><code>java.lang.RuntimeException: Application "org.eclipse.test.coretestapplication" could not be found in the registry. The applications available are: org.eclipse.equinox.app.error, com.rcpquickstart.helloworld.application. at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:242) at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) at org.eclipse.core.launcher.Main.main(Main.java:30) !ENTRY org.eclipse.osgi 2 0 2008-11-04 21:02:10.514 !MESSAGE The following is a complete list of bundles which are not resolved, see the prior log entry for the root cause if it exists: !SUBENTRY 1 org.eclipse.osgi 2 0 2008-11-04 21:02:10.515 !MESSAGE Bundle update@plugins/org.eclipse.test_3.2.0/ [34] was not resolved. !SUBENTRY 2 org.eclipse.test 2 0 2008-11-04 21:02:10 http://stackoverflow.com/questions/1346566/eclipse-pde-build-does-not-call-custombuildcallbacks-xml 1 Eclipse PDE build does not call customBuildCallbacks.xml JesperE 2009-08-28T11:58:38Z 2009-08-28T15:00:20Z <p>I'm trying to get my PDE build script to invoke my customBuildCallbacks.xml. I've added </p> <pre><code># build.properties customBuildCallbacks=customBuildCallbacks.xml </code></pre> <p>and copied the customBuildCallbacks.xml file from the PDE build plugin, but it's still not called. The only reference to customBuildCallbacks I get (with -verbose) is a note</p> <pre><code>[java] Override ignored for property "customBuildCallbacks" </code></pre> <p>What I'm trying to do is to run FindBugs on the compiled Jars.</p> http://stackoverflow.com/questions/1161651/using-a-ilightweightlabeldecorator-decorator 1 Using a ILightweightLabelDecorator decorator Martin Cowie 2009-07-21T20:45:51Z 2009-08-27T07:22:33Z <p>Having implemented one of the above, can anyone say how I might wire it up <em>directly</em> to a viewer? None of the usual sources explain.</p> <p>Martin.</p> http://stackoverflow.com/questions/1074481/osgi-fragment-is-not-working-outside-eclipse-pde-and-no-error-appeared 0 osgi: fragment is not working outside eclipse pde (and no error appeared) Michal Bernhard 2009-07-02T13:55:03Z 2009-07-07T17:23:05Z <p>Context of this problem: OSGi and Eclipse Platform.</p> <p>I've got bundle (plugin) which is host for some fragment. Fragment is running only when I start it through Eclipse "run configuration" (I add it in plugin dependencies in run configuration of plugin), but when I am trying to export it either through eclipse or through maven tycho project then fragment is not working. In osgi's console I've not found any conflicts (osgi command diag ) and fragment is in "RESOLVED" state which afaik means it's ok and it's started. Breakpoint in fragment in method IStartup#earlyStartup() (which is afaik entry point to fragment) is not activated, no error shown in osgi's console...nothing...</p> <p>Any clue? Am I missing something?</p> http://stackoverflow.com/questions/1076752/how-to-get-api-tooling-to-work-in-eclipse 0 How to get API Tooling to work in Eclipse GreenKiwi 2009-07-02T21:22:26Z 2009-07-02T23:08:02Z <p>I have been having a real hard time getting API Tooling to work in Eclipse 3.4.2. It keeps telling me:</p> <p>The minor version should be incremented in version 3.4.0.qualifier, since new APIs have been added since version 3.4.0.40001 </p> <p>That being said, I have generated the plugins that are used for the baseline from the exact same code that it is being analyzed against. The API Tools docs say that it compares the current code against the baseline to see if there are any differences. I can't see how there could be differences if the built version is built from the current code.</p> <p>The way that I tested it:</p> <ol> <li>Create a new eclipse workspace</li> <li>Create a new Plug-in Project with API Analysis turned on</li> <li>Add a simple class to that plugin and export the package with that class in it</li> <li>Build/Export that plugin to some location on your hard drive</li> <li>Set the workspace baseline to that location and do a full build</li> </ol> <p>You get an error for the project in your problems view.</p> <p>Thanks,</p> <p>-One very perplexed user</p> http://stackoverflow.com/questions/529211/jface-tableviewer-cell-span 1 jface tableviewer cell-span Martin Cowie 2009-02-09T18:11:06Z 2009-06-27T21:09:07Z <p>I am endeavouring to render some hierarchic data in a TableViewer (the TreeViewer isn't a good fit - trust me on this :-). Consequently I need to render the parent cells with a row-span > 1.</p> <p>As far as I can tell, this currently isn't possible with the regular JFace TableViewer, or the SWT Table underneath.</p> <p>Can anyone tell me I'm wrong?</p> <p>M.</p> http://stackoverflow.com/questions/1027494/eclipse-rcp-plug-in-question 1 Eclipse RCP/ Plug-in Question Dr. Faust 2009-06-22T14:25:15Z 2009-06-26T21:28:37Z <p>Hi,</p> <p>I have an RCP application (referred to as RCP-APP). I have created a new plug-in (referred to as plug-in A) that wraps a media player api (.jar file) and a folder of C libraries (dlls) that the media player api accesses via JNA. I then created another plugin (referred to as plug-in B) that contains a media player application that depends on Plug-in A. </p> <p>When plug-in B is activated I get the following error messages informing me that Plug-in B cannot find the media player .dlls it is looking for:</p> <pre> !ENTRY org.eclipse.jface 4 2 2009-06-22 10:05:22.475 !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.jface". !STACK 0 java.lang.UnsatisfiedLinkError: Unable to load library 'libvlc': The specified module could not be found. at com.sun.jna.NativeLibrary.loadLibrary(NativeLibrary.java:114) at com.sun.jna.NativeLibrary.getInstance(NativeLibrary.java:157) at com.sun.jna.Library$Handler.(Library.java:123) at com.sun.jna.Native.loadLibrary(Native.java:260) at com.sun.jna.Native.loadLibrary(Native.java:246) at org.videolan.jvlc.internal.LibVlc.(LibVlc.java:41) at org.videolan.jvlc.JVLC.(JVLC.java:45) at com.bah.gs.arts.jekyll.plugins.videolog.VideoLogDisplay.displayStream(VideoLogDisplay.java:32) at com.bah.gs.arts.jekyll.core.extensionpoints.DisplayStreamFactory.getDisplayStreams(DisplayStreamFactory.java:57) at com.bah.gs.arts.jekyll.core.views.medialist.MediaListView$1.doubleClick(MediaListView.java:91) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:799) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.core.runtime.Platform.run(Platform.java:880) at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:48) at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:175) at org.eclipse.jface.viewers.StructuredViewer.fireDoubleClick(StructuredViewer.java:797) at org.eclipse.jface.viewers.AbstractTreeViewer.handleDoubleSelect(AbstractTreeViewer.java:1419) at org.eclipse.jface.viewers.StructuredViewer$4.widgetDefaultSelected(StructuredViewer.java:1173) at org.eclipse.jface.util.OpenStrategy.fireDefaultSelectionEvent(OpenStrategy.java:237) at org.eclipse.jface.util.OpenStrategy.access$0(OpenStrategy.java:234) at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:295) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at com.bah.gs.arts.jekyll.core.Application.start(Application.java:20) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) </pre> <p><strong>How do I inform Plug-in B (or the RCP-APP) that the .dlls are in a specific folder in Plug-in A</strong>?</p> <p>It appears that the api expects to find the .dlls via it's environment PATH variable.</p> <p><strong>How can I essentially communicate "plug-in A/Folder-Name"</strong>?</p> <p>Thanks for your assistance.</p> 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/1040409/eclipse-plug-in-view-question 1 Eclipse Plug-in / View Question Dr. Faust 2009-06-24T19:23:58Z 2009-06-24T22:12:29Z <p>I have a plugin which contains class A that brings up a view defined in class B via the following line of code:</p> <pre> (VideoLogView) PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView("Videolog.VideoLogView"); </pre> <p>What I need to do in the createPartControl() method of the view (class B object) is access a method in the class A object.</p> <p><strong>How can this be done?</strong></p> <p>Thanks.</p> http://stackoverflow.com/questions/251791/running-eclipse-junit-plugin-tests-with-junit-4-4-or-newer-why-arent-tests-de 11 Running Eclipse Junit Plugin tests with Junit 4.4 or newer -- why aren't tests detected? rcreswick 2008-10-30T21:10:11Z 2009-06-22T21:05:58Z <p>I need to use JUnit 4.4 (or newer) in a set of eclipse plugin tests, but I've run into the following problem:</p> <p>Tests are not detected when running with the junit 4.4 or 4.5 bundles from springsource ([junit44] and [junit45]). The org.junit4 bundle that can be obtained with eclipse supplies junit 4.3 (as of Ganymead / Eclipse 3.4). The org.junit4 bundle <em>does</em> work in that it identifies and runs the tests, but it is not compatible with the latest versions of JMock, and I need to use a mocking library.</p> <p>Here is a sample test:</p> <pre><code>package testingplugin; import static org.junit.Assert.*; import org.junit.Test; public class ActivatorTest { @Test public final void testDoaddTest() { fail("Not yet implemented"); } } </code></pre> <p>When running this test, I receive the following exception:</p> <pre><code>java.lang.Exception: No runnable methods at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:33) at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42) at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34) at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:45) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:62) at org.eclipse.pde.internal.junit.runtime.CoreTestApplication.run(CoreTestApplication.java:23) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:574) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:195) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:382) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504) at org.eclipse.equinox.launcher.Main.run(Main.java:1236) at org.eclipse.equinox.launcher.Main.main(Main.java:1212) </code></pre> <p>However, if I switch the project dependencies from com.springsource.org.junit to org.junit4, then the test runs and fails (as expected).</p> <p>I am running the test as a JUnit Plug-in Test in Eclipse, with the following program arguments:</p> <p>-os ${target.os} -ws ${target.ws} -arch ${target.arch} -nl ${target.nl}</p> <p>The following plug-ins selected during launch (selected by me, then I used "add required plugins" to get the rest of the dependencies.):</p> <pre><code>Workspace: testingPlugin Target Platform: com.springsource.org.hamcrest.core (1.1.0) com.springsource.org.junit (4.5.0) ....and a bunch of others... (nothing related to testing was auto-selected) </code></pre> <p>Here is my MANIFEST.MF:</p> <pre><code>Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: TestingPlugin Plug-in Bundle-SymbolicName: testingPlugin Bundle-Version: 1.0.0 Bundle-Activator: testingplugin.Activator Import-Package: org.osgi.framework;version="1.3.0" Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Require-Bundle: com.springsource.org.junit;bundle-version="4.5.0" </code></pre> <p>Switching the last line to:</p> <pre><code>Require-Bundle: org.junit4;bundle-version="4.3.1" </code></pre> <p>And updating the selected plugins at launch to:</p> <pre><code>Workspace: testingPlugin Target Platform: org.junit4 (4.3.1) ...bunches of auto-selected bundles... (again, nothing else test related) </code></pre> <p>Causes the test to run properly (but with the wrong version of junit).</p> http://stackoverflow.com/questions/1015416/jce-problem-in-lotus-expeditor-ibms-custom-eclipse-runtime 0 JCE problem in Lotus Expeditor (IBM's custom Eclipse runtime) Jake 2009-06-18T21:55:55Z 2009-06-18T22:21:18Z <p>I'm trying to authenticate to Google Apps using the <a href="http://publib.boulder.ibm.com/infocenter/ledoc/v6r11/index.jsp?topic=/com.ibm.rcp.tools.doc.appdev/devapps%5Fj9jsseandproviderdetails.html" rel="nofollow">GData client library</a>. I've imported the needed jars and dependencies from the library into my Eclipse environment and verified that test code that calls the service works when run (a) as a POJO and (b) as a standard Eclipse plugin. When running in the Expeditor runtime (j9vm - Lotus Symphony 1.3) I get an error when I hit the line <code>com.google.gdata.client.docs.DocService.setUserCredentials</code> The error seems to come from an internal call in <code>javax.net.ssl.SSLContext</code>. The error thrown is <code>WARNING: CWPST502W: The algorithm for recovering the key from the keystore cannot be found.</code> Relevant Stacktrace follows post.</p> <p>The question is, what is the nature of this issue? If I am to understand that the JCE provider in Expeditor doesn't have the proper algorithm how do I go about determining which provider would have the proper algorithm? (i.e. how do I determine the algorithm?) More importantly, how would I override the provider in Expeditor with one of my choosing? Am I even on the right path here?</p> <p>The only remotely relevant documentation <em>I could find</em> from Lotus was this: <a href="http://publib.boulder.ibm.com/infocenter/ledoc/v6r11/index.jsp?topic=/com.ibm.rcp.tools.doc.appdev/devapps%5Fj9jsseandproviderdetails.html" rel="nofollow">J9 JSSE and Provider Details</a>.</p> <p>Oh, thanx in advance. -Jake</p> <pre><code>---BEGIN STACKTRACE--- WARNING: CWPST502W: The algorithm for recovering the key from the keystore cannot be found. Throwable occurred: java.security.NoSuchAlgorithmException: K00b3 at javax.net.ssl.SSLContext.getInstance(SSLContext.java:57) at com.ibm.rcp.security.ssl.PlatformSSLProtocolSocketFactory.createPlatformSSLContext(PlatformSSLProtocolSocketFactory.java:47) at com.ibm.rcp.security.ssl.PlatformSSLProtocolSocketFactory.getSSLContext(PlatformSSLProtocolSocketFactory.java:69) at com.ibm.rcp.security.ssl.PlatformSSLProtocolSocketFactory.createSocket(PlatformSSLProtocolSocketFactory.java:96) at org.apache.commons.httpclient.protocol.ControllerThreadSocketFactory$1.doit(ControllerThreadSocketFactory.java:90) at org.apache.commons.httpclient.protocol.ControllerThreadSocketFactory$SocketTask.run(ControllerThreadSocketFactory.java:157) at java.lang.Thread.run(Thread.java:816) Exception in thread "Timeout guard" java.lang.NullPointerException at com.ibm.rcp.security.ssl.PlatformSSLProtocolSocketFactory.createSocket(PlatformSSLProtocolSocketFactory.java:96) at org.apache.commons.httpclient.protocol.ControllerThreadSocketFactory$1.doit(ControllerThreadSocketFactory.java:90) at org.apache.commons.httpclient.protocol.ControllerThreadSocketFactory$SocketTask.run(ControllerThreadSocketFactory.java:157) at java.lang.Thread.run(Thread.java:816) java.lang.NullPointerException at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:720) at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(MultiThreadedHttpConnectionManager.java:1321) at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(HttpMethodDirector.java:387) at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(HttpMethodDirector.java:171) at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:401) at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:323) at com.ibm.rcp.net.protocol.http.HttpURLConnection.execute(HttpURLConnection.java:254) at com.ibm.rcp.net.protocol.http.HttpURLConnection.getResponseCode(HttpURLConnection.java:702) at com.ibm.rcp.net.protocol.http.HttpsURLConnection.getResponseCode(HttpsURLConnection.java:134) at com.google.gdata.client.GoogleAuthTokenFactory.makePostRequest(GoogleAuthTokenFactory.java:550) at com.google.gdata.client.GoogleAuthTokenFactory.getAuthToken(GoogleAuthTokenFactory.java:477) at com.google.gdata.client.GoogleAuthTokenFactory.setUserCredentials(GoogleAuthTokenFactory.java:336) at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:362) at com.google.gdata.client.GoogleService.setUserCredentials(GoogleService.java:317) ---END STACKTRACE--- </code></pre> http://stackoverflow.com/questions/1013795/eclipse-pde-build-fails-to-find-jar-location-on-customassembly 0 Eclipse PDE build fails to find jar location on customAssembly Robert Munteanu 2009-06-18T16:40:25Z 2009-06-18T17:20:45Z <p>I'm running a PDE build - pretty much defaults ( see at the end of the message ) which manages to copy all my plugins/features, resolve them, compile them and generate p2 metadata.</p> <p>At the <code>customAssembly</code> step it fails misteriously with </p> <pre><code>BUILD FAILED /home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/scripts /build.xml:38: The following error occurred while executing this line: /home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/scripts /build.xml:129: The following error occurred while executing this line: /home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/templates/headless-build/customTargets.xml:12: The following error occurred while executing this line: /home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/templates/headless-build/allElements.xml:16: The following error occurred while executing this line: /home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/scripts/genericTargets.xml:192: The following error occurred while executing this line: /tmp/eclipse.build/package.com.itsolut.mantis_feature.all.xml:23: The following error occurred while executing this line: /tmp/eclipse.build/package.com.itsolut.mantis_feature.all.xml:15: The following error occurred while executing this line: /home/robert/apps/eclipse/plugins/org.eclipse.pde.build_3.5.0.v20090527-1800/templates/headless-build/allElements.xml:31: The following error occurred while executing this line: /tmp/eclipse.build/package.com.itsolut.mantis_feature.xml:99: The following error occurred while executing this line: /tmp/eclipse.build/package.com.itsolut.mantis_feature.xml:169: /tmp/eclipse.build/tmp/eclipse/plugins/javax.xml.soap_1.3.0.v200904281458 not found. </code></pre> <p>Strangely enough, there is a jar file located in the /tmp/eclipse.build/tmp/eclipse/plugins/ directory:</p> <pre><code>/tmp/eclipse.build/tmp/eclipse/plugins/javax.xml.soap_1.3.0.v200904281458.jar </code></pre> <p>I'm out of idea since this is supposed to be a completely automatic process, but yet it fails misteriously.</p> <p>Any ideas?</p> <p><hr /></p> <h2>Build file</h2> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; </code></pre> <p></p> <pre><code>&lt;property name="builder" location="."/&gt; &lt;property name="topLevelElementId" value="com.itsolut.mantis_feature"/&gt; &lt;property name="baseLocation" location="${eclipse.home}"/&gt; &lt;property name="base" location="${baseLocation}/.."/&gt; &lt;property name="buildDirectory" location="${java.io.tmpdir}/eclipse.build"/&gt; &lt;import file="${eclipse.pdebuild.scripts}/build.xml"/&gt; &lt;target name="copyProjects"&gt; &lt;delete dir="${buildDirectory}"/&gt; &lt;mkdir dir="${buildDirectory}"/&gt; &lt;record name="${buildDirectory}/${topLevelElementId}-build.log" loglevel="verbose"/&gt; &lt;echoproperties/&gt; &lt;mkdir dir="${buildDirectory}/features/${topLevelElementId}"/&gt; &lt;copy todir="${buildDirectory}/features/${topLevelElementId}"&gt; &lt;fileset dir="../com.itsolut.mantis-feature"/&gt; &lt;/copy&gt; &lt;mkdir dir="${buildDirectory}/plugins"/&gt; &lt;copy todir="${buildDirectory}/plugins"&gt; &lt;fileset dir=".."&gt; &lt;include name="com.itsolut.mantis/**"/&gt; &lt;include name="com.itsolut.mantis.core/**"/&gt; &lt;include name="com.itsolut.mantis.ui/**"/&gt; &lt;exclude name="*/bin/**"/&gt; &lt;/fileset&gt; &lt;/copy&gt; &lt;/target&gt; &lt;target name="runBuild" depends="copyProjects,main"/&gt; </code></pre> <p></p> <h2>Complete source</h2> <p>Brave souls can take a look at <a href="http://mylyn-mantis.svn.sourceforge.net/viewvc/mylyn-mantis/trunk/com.itsolut.mantis.pde/" rel="nofollow">the project in svn</a> for more information.</p> http://stackoverflow.com/questions/222093/how-to-run-eclipse-launch-configurations-programmatically 3 How to run Eclipse launch configurations programmatically? jamesh 2008-10-21T14:31:03Z 2009-06-17T23:28:40Z <p>I'm finding it difficult to phrase this question well, as there are quite a few generic terms (run, configuration, launch, etc.). Here goes:</p> <p>You can <a href="http://eclipsesnippets.blogspot.com/2007/07/tip-creating-and-sharing-launch.html" rel="nofollow">save run configurations in a <code>.launch</code> file</a>. (in the Run Configuration Dialog, under the Common tab, Save as a shared file.</p> <p>We check these in to SVN. The developers can pass them around, and it helps getting new devs running a working application quicker.</p> <p>I'd like to check these out as part of our build and use them to programatically run the application, the tests, etc, without spinning up the whole IDE.</p> <p>What would be the best way to run a <code>.launch</code> file outside of the UI? </p> <p><strong>Edit</strong>: I am trying to unify the tests run on the build server and the IDE. I do not particularly want to give up integrated debugging, which would be the case with an ant script to run the tests .</p> <p>This is probably more a problem for integration testing with multiple bundles, or unit testing a whole bundle, where you'd like to mock up extensions.</p> http://stackoverflow.com/questions/1001322/how-to-make-read-only-editor-in-eclipse-eclipse-plugin-development 0 How to make read only editor in Eclipse (Eclipse Plugin Development) Martin Lazar 2009-06-16T12:58:48Z 2009-06-17T06:23:19Z <p>Hi, </p> <p>I'm wondering how to make a really read only eclipse editor.. My editor extends <em>TextEditor</em>, so when I reimplement method <em>isEditable</em> to always return <strong>false</strong>. </p> <p>It's the easiest way, which prevents user from typing or deleting anything in the document opened in the editor. But you can still change content of the document for example by using find/replace. And this is not desired..</p> <p>Is there any other aesy way how to arhieve this goal?</p> http://stackoverflow.com/questions/978566/opening-a-view-after-launching-in-eclipse 1 Opening a view after launching in eclipse Paul Johnson 2009-06-10T23:06:20Z 2009-06-10T23:10:10Z <p>I'm trying to have a view open programatically at the end of an eclipse ILaunchConfigurationDelegate. Currently I'm getting an "invalid thread access" error when I try to call showView(). How do I open a view from the launcher?</p> http://stackoverflow.com/questions/951845/how-do-i-fix-eclipse-warning-it-is-recommended-for-plug-in-xxx-to-run-from-a 1 How do I fix eclipse warning: "It is recommended for plug-in 'XXX' to run from a JAR, specify 'unpack="false"' attribute" Jeremy 2009-06-04T17:02:55Z 2009-06-10T17:34:02Z <p>The plug-in really needs to be unpacked, yes I know it shouldn't care, but it does. I just want to make this warning go away, how do I do that?</p> http://stackoverflow.com/questions/171824/programmatically-showing-a-view-from-an-eclipse-plug-in 2 Programmatically showing a View from an Eclipse Plug-in Brian 2008-10-05T11:00:10Z 2009-05-20T15:37:10Z <p>I have a plug-in to an Eclipse RCP application that has a view. After an event occurs in the RCP application, the plug-in is instantiated, its methods are called to populate the plug-in's model, but I cannot find how to make the view appear without going to the "Show View..." menu.</p> <p>I would think that there would be something in the workbench singleton that could handle this, but I have not found out how anywhere.</p> http://stackoverflow.com/questions/887248/how-to-implement-content-assists-documentation-popup-in-eclipse-rcp 0 How to implement content assist's documentation popup in Eclipse RCP Martin Lazar 2009-05-20T10:43:30Z 2009-05-20T14:08:21Z <p>Hi,</p> <p>I have implemented my own editor and added a code completion functionality to it. My content assistant is registered in source viewer configuration like this:</p> <pre><code>public IContentAssistant getContentAssistant(ISourceViewer sourceViewer) { if (assistant == null) { assistant = new ContentAssistant(); assistant.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer)); assistant.setContentAssistProcessor(getMyAssistProcessor(), MyPartitionScanner.DESIRED_PARTITION_FOR_MY_ASSISTANCE); assistant.enableAutoActivation(true); assistant.setAutoActivationDelay(500); assistant.setProposalPopupOrientation(IContentAssistant.PROPOSAL_OVERLAY); assistant.setContextInformationPopupOrientation(IContentAssistant.CONTEXT_INFO_ABOVE); } return assistant; } </code></pre> <p>When I press CTRL + SPACE inside the desired partition, the completion popup appears and works as expected.</p> <p>And here's my question.. How do I implement/register a documentation popup that appears next to completion popup? (For exapmple in java editor)</p> <p>Many thanks for your advice</p> http://stackoverflow.com/questions/38907/developing-on-eclipse-3-4-running-on-eclipse-3-3 5 Developing on Eclipse 3.4, running on Eclipse 3.3 zvikico 2008-09-02T05:46:42Z 2009-05-19T10:30:21Z <p>I'm developing an Eclipse plug-in, based on a bunch of core Eclipse plug-ins like SWT, JDT, GEF and others. </p> <p>I need my plug-in to be compatible with Eclipse 3.3, since many potential customers are still using it. However, personally I like the new features in Eclipse 3.4 and would like to use it for my development. This means I need PDE to reference 3.3 code and, when debug, execute a 3.3 instance.</p> <p>Any tips on how this can be achieved?</p> <p>Thanks.</p> http://stackoverflow.com/questions/539046/best-practices-for-eclipse-feature-integration-testing 7 Best practices for Eclipse Feature Integration Testing anovstrup 2009-02-11T22:02:37Z 2009-05-18T05:27:17Z <p>I am developing an Eclipse feature consisting of several Eclipse plugins, using Equinox Declarative Services (DS) to wire the plugins together at runtime. I would like to add integration tests to verify the equinox configuration. </p> <p>In particular, I want to verify that </p> <ul> <li>the service components bind together as expected</li> <li>the bundles are activated</li> <li><strike> the plugins share information as expected </strike> (see <strong>Edit 2</strong>)</li> </ul> <p>Furthermore, I want to make this integration testing a part of my continuous integration process using an Eclipse PDE headless build (as described <a href="http://www.eclipse.org/articles/Article-PDE-Automation/automation.html" rel="nofollow">here</a> and <a href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.test/testframework.html?view=co" rel="nofollow">here</a>).</p> <p><strong>My question is</strong>: Can you recommend any frameworks, tools, or practices that will facilitate this type of integration testing within the constraints I've identified?</p> <p>I've found two leads so far:</p> <ul> <li><a href="http://www.springsource.org/osgi" rel="nofollow">Spring Dynamic Modules</a> includes a framework for OSGi integration testing. However, I haven't been able to get a simple Spring DM test to run within Eclipse. It complains that "the platform is already running".</li> <li><a href="http://wiki.ops4j.org/display/ops4j/Pax+Exam" rel="nofollow">Pax Exam</a> (formerly Pax Drone) is another OSGi integration testing framework.</li> </ul> <p><strong>Edit</strong>: To clarify, each plugin has an OSGi service component configured with a component definition xml file. A mistake in one of these configuration files will not break any plugin dependencies and could easily go unnoticed until runtime. Integration testing is necessary to detect such failure.</p> <p><strong>Edit 2</strong>: So far every thing I've seen seems to confirm Uri's assertion (see below) that multi-plugin Eclipse features aren't integration-tested at the feature/product level. I'm willing to go without comprehensive integration tests if I can at least automatically verify that the service components bind together correctly. </p> <p>My approach (not working yet):</p> <pre> <code> In a JUnit test do For each bundle/plugin of interest Get the osgi Bundle object with org.eclipse.core.runtime.Platform.getBundle() Verify that the Bundle is active with Bundle.getState() Verify that the Bundle is using the expected services with Bundle.getServicesInUse() Verify that the Bundle has registered the expected services with Bundle.getRegisteredServices() </code> </pre> <p>I'm running my code with an Eclipse Plug-in Test launch configuration, launching my Eclipse product as the "Program to Run". When the tests run, I can verify that the bundles are active but the service components do not get activated and the getServicesInUse and getRegisteredServices methods return null. I loaded a class from each bundle in case it was a lazy-activation issue, but that didn't help. I also verified that all the service components are "immediate" components, so they should be activated as soon as their bundle's are activated. <strong>Why isn't Equinox DS doing its magic?</strong></p>