Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ant visual analysis? [closed]

Tags:

java

ant

I have to look into some complicated Ant files which include targets of other Ant files and these others, targets from the original etc.
Is there a (visual) tool that helps understand Ant files and structure and how they end up building the deliverables?

like image 257
Jim Avatar asked Sep 12 '12 12:09

Jim


2 Answers

You can try this tools:

  • ant2dot - using GraphViz toolkit to generate the final graph;
  • Vizant - using GraphViz toolkit to generate the final graph;
  • Grand - using GraphViz toolkit to generate the final graph;
  • ant-script-visualizer - using GraphViz toolkit to generate the final graph.

The IntelliJ IDEA has a very good support (has native plugin and several 3rd party plugins) of Apache Ant. You can read about Ant support in IDEA here.

like image 109
Alex K Avatar answered Oct 06 '22 10:10

Alex K


At my work we've had good results with Grand.

Here is another link to various Ant visualization tools.

like image 43
gareth_bowles Avatar answered Oct 06 '22 11:10

gareth_bowles