Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dump all defined properties in Ant script

Tags:

I have an Ant script that imports several external scripts and property files which were not written by me. (It's a project that was automatically generated by the Android SDK, but that shouldn't matter.) I added a custom target to the script, but I'd like to do a better job of integrating it with the stuff that's already there. What I need is a comprehensive list of the global properties that are defined at a particular point in script execution. Is there any way to do that with Ant?

like image 902
Mike Baranczak Avatar asked Jun 21 '11 14:06

Mike Baranczak


1 Answers

You can use the Echoproperties task.

like image 129
sudocode Avatar answered Sep 19 '22 17:09

sudocode