| 1. |
How Can I Use Ant To Run A Java Application? |
|
Answer» The following is an example to run a Java APPLICATION in using ANT: <target name=”run” DEPENDS=”some.target”,some.other.target”> The following is an example to run a Java application in using ANT: <target name=”run” depends=”some.target”,some.other.target”> |
|