Reputation: 57
In A Brief Overview of Building at Eclipse it is mentioned that the PDE build is the 'old way' of building RCP-based applications. I wonder:
Upvotes: 1
Views: 550
Reputation: 34255
PDE Build has been deprecated in Eclipse Neon (4.6) more than four years ago.
See Eclipse 4.6 review:
PDE Build is in maintenance mode and is no longer used to build the Eclipse platform itself
The advantage of Tycho, besides being newer, is the bootstrapping ability inherited from Maven. This allows you to build an Eclipse plugin, product, update site, etc. wherever Maven is supported, for example on GitHub in a workflow action.
Upvotes: 2