Questions tagged [headless-rcp]

6 questions
13
votes
2 answers

The bundle XYZ could not resolved. Reason: Missing Constraint: Import-Package: ABC; version="1.0.0" error in headless RCP standalone

I'm working on standalone headless RCP. It works without problem when I execute the application and product in eclipse IDE, but when I export and execute it, I got this error in the log file. !ENTRY org.eclipse.equinox.ds 4 0 2013-01-16…
prosseek
  • 182,215
  • 215
  • 566
  • 871
4
votes
4 answers

How to set the proxy configuration for a headless Eclipse application on Windows

I have a script which needs to call one of the existing, headless Eclipse applications (example: the p2 director application) which use the Proxy API of org.eclipse.core.net for configuring its requests to HTTP servers. On Linux, I can configure the…
oberlies
  • 11,503
  • 4
  • 63
  • 110
3
votes
0 answers

PDE headless build not building while IDE does (3rd parties uses directives unresolved)

We have a large OSGi project with some own bundles and hundreds of third parties bundles. After some tweaking of dependencies, we were able to produce a valid Launch Configuration that runs correctly and a product/feature configuration that builds…
DocDbg
  • 427
  • 1
  • 5
  • 13
1
vote
0 answers

Ant with Eclipse PDE successful build even with compilation errors

I'm using Ant to invoke Eclipse PDE Build to make a headless build of an RCP application. As I understand it PDE Build itself calls Ant to build the application, so we're essentially running an Ant build in Ant. The problem is this: when the PDE…
tobier
  • 646
  • 1
  • 5
  • 21
0
votes
1 answer

Is it possible for an Eclipse plugin to be both Headless and make contributions to the UI?

I created a plugin that uses some cdt API to to fetch data about about all C projects in a Workspace. This plugin makes a contribution to the UI since you can click on a button to trigger this action. I created another headless plugin (a rcp), that…
0
votes
0 answers

Headless and UI Plugin Development for Eclipse

I want to make a Headless Console plugin and a UI plugin for Eclipse. Requirments are like this; Headless plugin will be accessed from cmd Headless plugin will accept couple of parameters UI plugin will show windows to user to input these…