How you can clean or delete workspace using ant?
Answer / Sulekha Kumari
"To clean or delete the workspace using Ant, you can define a 'clean' target in your buildfile and use the <delete> task to remove specific directories. Here's an example:nn<target name="clean">n <delete dir="bin"></delete>n <delete dir="dist"></delete>n</target>n
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how to test classes for junit using ant script?
What are the capabilities of ant?
How does ant read properties? How to set my property system?
How you can explain ant property?
How we can run jar using ant?
Why do you call it ant?
List some basic functions performed by ant.
Explain how to debug my ant script?
How to hide password input?
How can I write my own ant task?
What is apache ant?
Can you define build tool?