i am creating a jar file using the below ant script.

 <target name="makejar" depends="buildejb">
  <jar jarfile="${src}/classes/npacejb.jar" basedir="${src}/classes">
   <fileset dir="${src}/classes" includes="**/*.*"/>
  </jar>
 </target>

The created jar file has all the files twice in it, with the same path. ex:
there are 2 files named as weblogic-ejb-jar.xml with the same path.
i have another problem. there are several files whose *path* is META-INF.
but i am getting the META-INF in small letters. how can i change this
meta-inf to META-INF?

Reply via email to