Hi ..

I have a build that uses an automatically generated manifest file. When I start the build, I cannot be certain that my dest directory (classes/) is going to exist, so I have a task to create it. My question is, how do I then copy the manifest file into that directory?

My jar task looks like


  <target name="jar" depends="javacompile">
    <jar destfile = "${dist}/CLIManager-${DSTAMP}.jar"
         basedir  = "${dest}"
         manifest = "${dest}/manifest.txt"
         />
  </target>

Or is there a better way?

TIA,

--

-mark. (Ant newbie)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to