I followed The Java Archive Tool but couldn't find how to exclude folders.
For example, I have the files under working copy directory:
workingcopy
--src
--.svn
-- com
--.svn
--WebContent
I would like to compile and create jar only from the classes under src excluding all folders starting with .svn directory. I want to run it from cmd like jar -cf test.jar etc..
How can I do it?
