Questions tagged [eclipse-pde]

Use this tag to ask about the Eclipse Plugin Development Environment which provides tools to create, develop, test, debug, build and deploy OSGi bundles, Eclipse plug-ins, fragments, features, update sites and RCP products.

The Eclipse Plug-in Development Environment (PDE) provides tools to create, develop, test, debug, build and deploy Eclipse plug-ins, fragments, features, repositories, update sites and RCP products.

PDE also provides comprehensive OSGi tooling.

Note that PDE build tools are now in maintenance mode and are no longer being developed, building should be done with Maven and Eclipse Tycho.

For more details see: http://www.eclipse.org/pde/

472 questions
10
votes
2 answers

Continue development of Plugin

There is an Eclipse Plugin managed by Maven containing this configuration:
Grim
  • 1,938
  • 10
  • 56
  • 123
10
votes
4 answers

How do I attach source code locations to plugins in my Eclipse RCP target platform?

I've got a workspace with multiple RCP plugin projects. 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. The Windows -> Preferences ->…
jamesh
  • 19,863
  • 14
  • 56
  • 96
9
votes
5 answers

Unable locate installable unit in target definition

I created my own target definition. It worked perfectly until now. Today I opened this target definition and got following error for all software sites I have there: Unable to locate installable unit The target definition file looks…
michael nesterenko
  • 14,222
  • 25
  • 114
  • 182
8
votes
3 answers

How to develop Eclipse plugins in clojure?

I was wondering if there is a way to develop Eclipse plugins in Clojure. To be clear, the question is not about using Eclipse to write Clojure code. Both Eclipse and Clojure run on the JVM and I feel there should be way to leverage the power of…
Punit
  • 115
  • 4
8
votes
3 answers

Eclipse editor plugin: "ERROR" when opening file outside project

I'm developing an editor plugin for eclipse. It works fine on files within eclipse projects, but when an external file is opened via the "File -> Open File" menu (which works file with, e.g. Java files), I get a page displaying nothing but a…
Michael Borgwardt
  • 342,105
  • 78
  • 482
  • 720
7
votes
4 answers

Eclipse PDE, Navigator View, TreeSelection - Obtaining the file type and name

I'm trying to obtain details of an Eclipse user's structured selection in the Navigator Tree view. At present I have the following which is based on the org.eclipse.ui.popMenus extension point: public void run(IAction action) { Shell shell = new…
Jonathan Holloway
  • 62,090
  • 32
  • 125
  • 150
7
votes
1 answer

Is the PDE's "Update Site Wizard" still the right way to create an update site?

The point of this question is to get verification from someone knowledgeable of the current state of affairs with the Eclipse install system. I have an Eclipse plugin and I want to make an update site for it using the easiest (but correct) method…
BHS
  • 1,079
  • 1
  • 6
  • 10
7
votes
3 answers

How do I install eclipse PDE on Indigo (3.7)

I just re-installed eclipse, using the latest version (Indigo / 3.7), and I run into the exact same problem as I did half a year ago. I installed the eclipse java IDE, now how do I get the plugin development enviroment (PDE) working? I've installed…
amarillion
  • 24,487
  • 15
  • 68
  • 80
7
votes
1 answer

How to refresh resource from Eclipse Plugin?

I have changed some resource. When I click on it in Eclipse I get info "Resource is out of sync". How can I refresh it? I tried org.eclipse.core.resources.IResource.touch(IProgressMonitor), but it does not help
IAdapter
  • 62,595
  • 73
  • 179
  • 242
7
votes
0 answers

Liquibase and PDE: Error Reading Migration File: Found 2 files that match /resources/changelog.xml

I'm using Liquibase in OSGi bundle to update database. The problem is, when I start in in Eclipse, using PDE. I get then error: liquibase.exception.ChangeLogParseException: Error Reading Migration File: Found 2 files that match…
Danubian Sailor
  • 1
  • 38
  • 145
  • 223
7
votes
3 answers

Eclipse v4.5 without delta-pack: How to perform a multiplatform headless PDE build?

Now that eclipse 4.5 is out and the eclipse team decided to not build the so-called "delta-pack" anymore, I don'tknow how to perform a PDE headless build with ant.. Official PDE build documentation here…
titou10
  • 2,814
  • 1
  • 19
  • 42
7
votes
1 answer

What is an OSGI version qualifier

I need to confirm what I suspect as I cannot find any documentation on it, so this would appear a silly question, and since I am a learner at eclipse PDE. Initially, I had a parent project pom of an eclipse plugin project…
Blessed Geek
  • 21,058
  • 23
  • 106
  • 176
7
votes
1 answer

How to make the PDE target definition editor show all plug-ins?

We aim at using Tycho+Eclipse PDE to build OSGi bundles in a distributed team. So far artifacts are built and deployed to a Nexus OSS repository. This has been augmented with p2 support, "artifacts.xml" and "content.xml" are generated (or…
jpullmann
  • 111
  • 1
  • 3
6
votes
3 answers

Developing on Eclipse 3.4, running on Eclipse 3.3

I'm developing an Eclipse plug-in, based on a bunch of core Eclipse plug-ins like SWT, JDT, GEF and others. 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…
zvikico
  • 9,765
  • 4
  • 38
  • 49
6
votes
2 answers

Eclipe PDE: Jump to line X and highlight it

A qustion about Eclipse PDE development: I write a small plugin for Eclipse and have the following * an org.eclipse.ui.texteditor.ITextEditor * a line number How can I automatically jump to that line and mark it? It's a pity that the API seems only…
autobiographer
  • 945
  • 1
  • 9
  • 8
1
2
3
31 32