pf1989
pf1989

Reputation: 57

PDE Build vs. Maven Tycho

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:

  1. Why it is considered outdated?
  2. What are the advantages of Tycho over PDE?
  3. Is the 'old way' going to deprecate?

Upvotes: 1

Views: 550

Answers (1)

howlger
howlger

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

Related Questions