I have the following in my build.xml, but it complains about an import:
*
import* org.apache.axis2.util.OptionsParser;
I thought this class is part of the axis 2 package. Can anyone help me
fix this?
Thanks,
Sonia
<target name="compile.service">
<mkdir dir="${build.dir}"/>
<mkdir dir="${build.dir}/classes"/>
<!--First let's compile the classes-->
<javac debug="on"
fork="true"
destdir="${build.dir}/classes"
srcdir="${basedir}/src"
classpathref="axis2.classpath">
<classpath>
<fileset dir="lib">
<include name="**.jar"/>
</fileset>
</classpath>
</javac>
</target>