Discussion :: Apache Ant
- What are the ways to Debug my ant script?
A.
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
|
B.
By using project.log (message") in the javascript or the customized ant task
|
C.
By running ANT with "“verbose / -debug options. These options provide more information on what is the process going and at which location
|
D.
All of these
|
Answer : Option D
Explanation :
Be The First To Comment