I'm about the setup an automatic (command-line) build for my Eclipse RCP Application.
I have found out the following ways to do it:
- Buckminster
- Using Maven with the
pde-maven-plugin
- Headless PDE Build
The problem with all these options is that they require me to create essentially a new representation of the information already contained in my target platform definition. For example in Buckminster, this would be the .rmap
file.
In my thinking all the information to build the product should be already there when I have the following:
- Plugin project with product configuration file (foo.product)
- Target platform definition file (foo.target)
Therefore I would expect there to be a command like the following:
build-rcp-product foo.product foo.target win32
Is there anything like that which I may have missed?