J
Jason Cavett
I am attempting to use Ant to create a JAR file. So far, it works
using the (partial) code below.
<property name="build-name" value="Project" />
<property name="dist" value="dist/${build-name}" />
<property name="build" value="bin" />
<property name="resources" value="resources" />
<jar destfile="${dist}/${build-name}.jar" manifest="META-INF/
MANIFEST.MF" basedir="${build}" />
However, I need to now include a file found in ${resources} (an image
for my SplashScreen-Image), but I can't figure out how to get a hold
of it. I've tried using file, includes and various other tags that
along with the jar tag. But, I can't seem to get access.
Can anybody help? Thanks.
using the (partial) code below.
<property name="build-name" value="Project" />
<property name="dist" value="dist/${build-name}" />
<property name="build" value="bin" />
<property name="resources" value="resources" />
<jar destfile="${dist}/${build-name}.jar" manifest="META-INF/
MANIFEST.MF" basedir="${build}" />
However, I need to now include a file found in ${resources} (an image
for my SplashScreen-Image), but I can't figure out how to get a hold
of it. I've tried using file, includes and various other tags that
along with the jar tag. But, I can't seem to get access.
Can anybody help? Thanks.