How do I code into my build file a target that allows one view the names of my source files. I am new to ant.
Try
<target name="print-src"> <apply executable="echo"> <fileset dir="src" includes="**/*.java"/> </apply> </target>
2.1m questions
2.1m answers
60 comments
57.0k users