Eclipse RCP - what is a headless build?

During the RCP Eclipse project, I hear about a "headless build."

  • What is a headless assembly?
  • What is a headless build for Eclipse RCP?
+5
source share
2 answers

Headless build means you can run the build without starting the Eclipse GUI. To do this, you have a build script (in the case of a carefree Eclipse, this is an Ant script AFAIK), which you can run through the command line, and thus you can run the build on the server without a graphical interface, Lars Vogel has a good tutorial on this .

+9
source
0

All Articles