This is what I use for creating a webcontent jar.  (Changed for your
content)

<property name="images" value="web/images" />

 <jar jarfile="web/jar/images.jar"
       basedir="${images}"
       includes="**"
  />

OR

If you want the images dir in the jar (images/*.gif) change to:

<property name="images" value="web" />
<jar jarfile="web/jar/images.jar"
       basedir="${images}"
       includes="images/**"
  />


HTH
steve

Reply via email to