I know this is not the board for this question, but ant is integral part of xdoclet. I would appreciate some help here. I have a simple target as follows:
 
<target name="buildJar" depends="clean,compile">
  <jar destfile="${basedir}/test.jar"
    basedir="${output.classes.dir}">
   <metainf>
    <fileset dir="${output.metainf.dir}"/>
   </metainf>
  </jar>  
 </target>
 
When I run, I get the following error: ( ant 1.5.1 )
 
Buildfile: build.xml
 
BUILD FAILED
file:F:/wls_examples/applications/learnwls/misc/build.xml:82: Class org.apache.t
ools.ant.types.ZipFileSet doesn't support the nested "fileset" element.
 

Reply via email to