2

I am trying to build Aptana studio using Maven/Tycho.

It has a lot of Eclipse plugins and I would like to exclude some of them from the build. However the excluded plugins may be required by other plugins.

How to see what plugins are dependent on the current plugin? Is the some tools to visualize dependencies in a directed graph?

oberlies
  • 11,503
  • 4
  • 63
  • 110
Paul Verest
  • 60,022
  • 51
  • 208
  • 332
  • 1
    See this http://stackoverflow.com/questions/4084669/how-to-generate-a-graph-of-the-dependency-between-all-modules-of-a-maven-project – earcam Oct 06 '13 at 18:23
  • @Paul: The status update you edited into the question should have been posted as a comment instead. – oberlies Oct 14 '13 at 08:15

1 Answers1

4

The Plugin Dependencies View which comes with PDE has a button (two-to-one graph) to show plugins depending on the focused plugin.

If you want to see the full picture, then you will need to install the PDE Incubator Dependency Visualization (update site link included). Note this often gets quickly unreadable.

UPDATE by Paul

Update site http://download.eclipse.org/eclipse/pde/incubator/visualization/site
Need to uncheck "Group items by category" for item to appear.
It is version 0.5.0.20090415
So it is almost 5 years old and is unlikely to ever graduate from incubator.

Added Marketplace entry: https://marketplace.eclipse.org/content/pde-incubator-dependency-visualization

Paul Verest
  • 60,022
  • 51
  • 208
  • 332
S. Cambon
  • 560
  • 3
  • 9
  • http://download.eclipse.org/eclipse/pde/incubator/visualization/site gives me 404. Any updated link? – pihentagy Feb 18 '14 at 10:34
  • Not a direct one. I have found the Git repository for this plugin (here: http://git.eclipse.org/c/pde/eclipse.pde.incubator.git/tree/visualization/plugins/org.eclipse.pde.visualization.dependency), but you would have to build it yourself... – S. Cambon Feb 19 '14 at 15:42
  • Thanks Paul for the Marketplace link! – S. Cambon Mar 04 '14 at 21:40