Hi,
In my following ant target (javac) I find that the three files that I ask to be
excluded from the build process are also built.
I assume this is not the expected behaviour. Has anyone found a way around this
problem or am I doing something wrong.
Thanks for your help in advance.
<target name="compile_client" depends="buildejb">
<delete dir="{build}" />
<mkdir dir="${build}" />
<javac destdir="${build}"
classpath="${myclasspath}">
<src path="${operation_src}" />
<exclude name="ejb/ClientController.java" />
<exclude name="ejb/ClientControllerHome.java" />
<exclude name="ejb/ClientControllerBean.java" />
</javac> </target>
regards,
Ritendra
--
This e-mail may contain confidential and/or privileged information. If you are not the
intended recipient (or have received this e-mail in error) please notify the sender
immediately and destroy this e-mail. Any unauthorised copying, disclosure or
distribution of the material in this e-mail is strictly forbidden.