1.

Explain How To Debug My Ant Script?

Answer»

ANT script can be debugged in the following ways:

  1. By echoing at the PLACE to debug. The problem is easily known. This is similar to printf() function in C and System.out.println() in Java.
  2. By USING project.log (“MESSAGE”) in the java script or the customized ant task.
  3. By RUNNING ANT with –verbose / -debug options. These options provide more information on what is the process going and at which location.

ANT script can be debugged in the following ways:



Discussion

No Comment Found