Tagged Questions
0
votes
0answers
21 views
eclipse command line headless build all only for /debug
Is there any way to perform headless build for all projects in workspace only for /debug ? I am doing "Build all" script for bunch of unit tests for continuous integration machine, and I don't want to ...
0
votes
0answers
38 views
How to retrieve IFile from headless RCP
I have a headless RCP project. I am passing an xml file as command line argument to that project. How can I retrieve IFile information from the xml file?
0
votes
3answers
50 views
start() method in Activator is not invoked in Eclipse headless
I am executing Eclipse headless (via java -jar org.eclipse.equinox.launcher_.jar) and I realized that when I invoke a class that is inside a plugin with an Activator defined as "Activate this plugin ...
0
votes
1answer
58 views
How to import a project into eclispe BY CODE (without GUI)
I just encountered a problem of my headless plugin-in.
I need to refer some existing Java project for JDT analysis, except that I must import (not necessarily copy) them to the local workspace before ...
0
votes
0answers
365 views
Exporting headless eclipse application causes 'The product's defining plug -in could not found' error
Following the tutorial in this post, I could generate the headless eclipse plugin working in eclipse IDE.
By following Paul's recommendation, I tried to creating a .product file and exporting it.
...
1
vote
1answer
435 views
config.ini setup for headless eclipse
From this post, I have this error message when I tried to execute headless eclipse code.
java.lang.RuntimeException: Could not find framework
at ...
1
vote
1answer
561 views
Executing headless eclipse in command line
Following this instruction, I could run headless eclipse plugin in side eclipse IDE.
I've got some error log info, but I guess I could ignore it based on this post - Unable to find feature.xml in ...
2
votes
1answer
454 views
Eclipse RCP - what exactly is a headless build?
During an Eclipse RCP Project I hear about the "headless build".
What exactly is a headless build?
What is a headless build for Eclipse RCP?
0
votes
0answers
109 views
Eclipse headless files reresh
I am trying to use headless build by using the command:
eclipsec -nosplash -application org.eclipse.jdt.apt.core.aptBuild -data %WORKSPACE%
The build works, but there is a major problem. Files that ...
0
votes
2answers
158 views
Running buckminster headless from an Eclipse installation
I got Buckminster installed and it works perfectly within my Eclipse IDE. Now, I'd like to run the headless version of it, but I'm wondering if I have to install the headless version of Buckminster, ...
0
votes
1answer
70 views
unable to perform headless PDE build using AJDT in eclipse 3.6
i have several simple plugin projects being developed in eclipse 3.6 as part of an rcp application. i also have a very simple aspect. i have read Andrew Eisenberg's article ...
0
votes
1answer
62 views
What are the requirements and use cases to have an eclipse headless application?
I would like to know what generic requirements are there to have Eclipse headless application. Also what are the different generic use cases which will be helpful to have headless application.
...
1
vote
2answers
656 views
How can I turn off headless graphics environment on windows7
I have managed to break a working application, and cannot work out how to fix it.
I have a java web-app which runs on "tc server" on a Windows7 box from within Eclipse (spring STS version.)
The ...
0
votes
1answer
279 views
Eclipse automatic build for custom projects
In Eclipse while creating the new Java Project (with our own custom wizards) I have associated a new builder to the project. Now the created java project has JavaNature and two builders associated ...
2
votes
1answer
524 views
Buckminster: running JUnit Plugin tests headless
I have a simple Hudons/Buckminster setup where Hudson checks out four Java plugin projects from SVN, materializes(?) the org.eclipse.platform from the Helios download-site, runs a small ant-job in one ...
7
votes
2answers
1k views
What is the meaning of the term 'headless' in the context of Java development in Eclipse?
What is the meaning of the term 'headless' in the context of Java development in Eclipse?
0
votes
1answer
387 views
Eclipse headless build doesnt return error code
I have an ant script that does a headless build using the following ant code
<java jar="${equinoxjar}" fork="true" failonerror="true" logerror="true">
<arg line="-application ...
4
votes
1answer
1k views
How to build Eclipse Plugin UpdateSite on headless server?
For the last few days I have been trying to test-build my eclipse plugin on a headless Debian VM. The reason for the headless Debian VM is that once I have the build setup, the build and the ...
2
votes
3answers
2k views
Target Platform for PDE Headless build does not work
I am currently trying to get my headless pde-build working but I am stuck on a point where I do not know how to continue.
The problem is how to define the related target platform to compile the ...
11
votes
2answers
2k views
Eclipse: What is the minimum Eclipse installation needed for a headless PDE build?
I am currently using PDE build in headless mode to build my OSGI Bundle project.
The PDE Antrunner task uses an Eclipse installation and I am just pointing it to my local Eclipse installation.
...
3
votes
2answers
2k views
headless xml generation from xsd with eclipse
In recent versions of the free and open source Eclipse IDE you can generate XML documents from DTD and XSD files. Right-click on a given *.dtd or *.xsd file and select "Generate -> XML File...". You ...
2
votes
3answers
923 views
Is there a headless way to import projects and refresh the workspace?
Still trying to set up an headless build for a big university project (RCP product).
Every Eclipse user knows the following manual functionality:
"File --> Import --> Existing projects into ...
0
votes
1answer
622 views
How can i invoke the EMF Generator headless using a workspace outside the eclipse installation?
I am trying to generate the edit and the editor code of a EMF Genmodel using a batch file and the headless command.
Here is my batch code:
cd\
cd C:\eclipse
eclipsec -noSplash -data "C:\Dokumente ...
1
vote
1answer
5k views
How can I make Cobertura/Emma play nice with an Eclipse application?
My company is in the middle of upgrading our build system to use Buckminster (which has gone well). Naturally the managers would like it if we could automatically generate some of the metrics they use ...
4
votes
2answers
794 views
Headless Eclipse Build returns ERRORLEVEL 13
Everything was going well. Nightly builds ran for more than a month with no problems. However, suddenly when invoking the feature builder from Eclipse the execution ends right away with the message.
...
2
votes
1answer
1k views
Using customBuildCallbacks.xml in an Eclipse RCP headless build
I am trying to add some custom build steps to my headless build process for an Eclipse RCP application.
I understand that the recommended way is to provide a customBuildCallbacks.xml file on the ...