Today I write a target as follows:
<target name="compile" depends="prepare">
<javac srcdir="${src.dir}" destdir="${build.classes}" debug="true" debuglevel="lines,vars,source" >
<!-- No
junit class-->
<exclude name="**/*Test.java" />
<!--the class needed for compile!!-->
<classpath>
<fileset dir="${oms.lib}">
<patternset refid="compile.used.libs" />
</fileset>
<fileset dir="./lib">
<patternset refid="compile.used.libs" />
</fileset>
</classpath>
</javac>
in my {src.dir} where has some files that not *.java file, after run
ant, in the {build.classes} i only find the *.class files and the others are not there. Is any thing wrong? Thanks first!!
[ February 15, 2006: Message edited by: Bear Bibeault ]