I have 2 eclipse plugins that I am building; let's call them plugin A and plugin B...
Plugin A requires a license to run and Plugin B is free to the world. ... |
I am writing an application that uses Equinox as my OSGi framework. I am trying to discover all of the bundles that are known at the time that my bundle ... |
I'm just trying to get my head around the Managed Extensibility Framework (MEF) at the moment and digging into a bit. I have an Eclipse background so ... |
Is there work on implementing a .NET version of the OSGi plugin architecture (or something similar)? I have only found this paper, but no real library. Any pointers?
|
I am building an eclipse plugin (a notes plugin, but its a eclipse plugin in the end). One of the plugins my plugin depends on needs to load a native dll.
The ... |
In Eclipse (3.3) if you start the New Plugin Project Wizard, the first page has a Target Platform, where you can target a version of eclipse.
Is this information saved/used ... |
If I have plugin common, with plugin A and B as separate plugins/products, both depending on plugin common.
In plugin common, I externalise the strings in plugin.xml, this gives me %bundle-vendor = ... |
|
I have a some additional xml files(containing standard eclipse extensions) that lie outside the bundle. Is there a way that I could contribute the extns/extnpoints in those files to the platform's ... |
We're trying to determine how to implement a simple plugin framework for a service we are implementing that allows different types of calculators to be "plugged-in".
After reading a number of ... |
Simple usecase: assemble an Eclipse product using simple scripts, just dumping bundles into the plugins dir.
This used to work with 3.3 - with 3.5 it's broken: my application doesn't start ... |
I like OSGi, but the import/export restrictions and the lack of context class loader creates havoc when trying to use 3rd party libraries (e.g., some libraries try to find file.xml in ... |
i have been creating a customized Eclipse Version with some specific Plugins (CDT, AVR-Development) and after configuring and testing successfully on my machine, I zipped the eclipse-Folder and send it to ... |
I have installed Eclipse Helios. how can i add to it plug-in development functionallity (to be able to create OSGi bundles)
|
I changed my Java SE (right button click on project Configure -> Convert to Plug-in Projects) to plug -in, but when i try to run it - it run as Eclipse ... |
I'm working on a EMF project where I've created a ecore model from a mdl file. I created the corresponding gencore file and generated the code from the gencore file. While ... |
In my Eclipse runtime, I have the following three plug-ins (file names simplified for better readability):
- javax.wsdl.1.4.0.jar
- javax.wsdl.1.5.1.jar
- eclipse.wsdl.jar, which has a version restriction on the dependency: [1.4.0, 1.5.0)
The dependencies of my own plugin ... |
As mentioned in a previous question I am trying to check that all my ResultSet are closed. For that I want to use AspcetJ but after 1 day of hard ... |
Consider an open source project hosted at github that publishes Eclipse plugins.
Options:
- Buy a domain name and use it.
- com.github.something
- make something up and figure that it's not too likely that anyone else
will pick ...
|
I am using a headless version of Buckminster, v3.6. From what I had read, by updating to Eclipse 3.6, the PDE environment will build AspectJ projects, if you include certain ... |
I have rather simple scenario:
My aplication has core jar file that contains my application's logic. This core jar should dynamically watch folder at runtime and when plugin jar is dropped there ... |
I've followed http://www.eclipse.org/equinox/documents/quickstart-framework.php but it seems to be old and not valid.
There is no such bundles as described org.eclipse.update.configurator_3.2.100.jar
I tried with the org.eclipse.equinox.simpleconfigurator_1.0.200.v20100503, but doesn't ... |
I am trying to follow an OSGi bundle tutorial (http://www.vogella.de/articles/OSGi/article.html). It includes this method in the Activator class:
public void start(BundleContext context) throws Exception {
System.out.println("Starting ...
|
Plz tell the solution for the below problem.when i am running the plug-in project in Eclipse Rcp Iam getting this type error.But I added Emulator bundle to plug-in project..How to ... |
I've implemented "New Wizard" plug-in for my content-type.
Tested it - it works.
Then I've found that neither Bundle-Activator was declared, nor the Activator class was defined.
The question is - when the Activator ... |
I am using eclipse indigo release. I downloaded the bnd plugin (from http://www.aqute.biz/Bnd/Download). When i try to right-click on a bnd file and do a 'Make bundle'; I am ... |
I am creating an IClasspathContainer that access an installed OSGi Bundle (Eclipse Plugin) withing eclipse. I get the IPath for the bundle by
Bundle bundle = Platform.getBundle(pluginId);
...
|
I've created a RCP application with a plugin that requires to invoke the method Bundle.findEntries. In debugging mode (i.e., when I launch my app from eclipse) everything works correctly, but when ... |