Ant compiling but not running or creating jar
Ant compiling but not running or creating jar The Ant build below compiles successfully. Unfortunately, it doesn't execute the run step despite the depends attribute specifying execute the run target after compile step completed successfully. depends It also doesn't create a jar file in the specified classpath. build.xml <?xml version="1.0" encoding="UTF-8"?> <project default="run" name="My Project"> <target name="run" depends="compile"> <java classname="com.company.program.project"> <classpath path="staging" location="C:my_workEclipse3.6-64plugins"/> </java> </target> <target name="compile"> <javac includeantruntime="false" srcdir="./src" destdir="staging"> <classpath> <fileset dir="C:my_workEclipse3.6-64plugins"> <!-- <include ...