After a build of a java applet I would like to copy a file, or files from $PROJECT_DIR\data into the build directory. Can I do this easily somehow by marking the files in some way, or must I write an ant copy statement?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Ant build.xml is the way to go, IMO.

link|improve this answer
Any clues? I managed to make it work if I Run -> Build project. But when right right click and "run" the applet, the files dissapear. It appears -compile-single doesn't call -post-compile <target name="-post-compile"> <copy todir="${build.classes.dir}/data"> <fileset dir="data"/> </copy> </target> – Spacen Jasset Sep 18 '09 at 22:44
what's "post compile"? Just add the copy command to your packaging target. Sounds like you're being too clever with Ant. – duffymo Sep 19 '09 at 0:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.