Hi all.
I have the following structure:
Dir\src for source
Dir\build for class files
Dir\dist for storing the jar
Dir\images images used by the application
using
ant, I want to create an executable jar file.
I wrote :
but the problem is, ant doesn't create images directory inside the Jar file, so the application will not working.
(when extracting the jar I found:
com/*.class
Meta-INF
image1.gif
image2.gif)
how to create the images directory inside the jar ??