Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

6 Answers

up vote 1 down vote accepted

This could be a practical workaround for your problem: it will not exclude the subversion directory (directories) but include only class files (assuming, you don't put class files under version control):

jar -cf test.jar *.class

Further enhancement: separate code from class files. You don't want to check in class files (build artefacts) anyway:

workingcopy
--src
  --.svn
  -- com  // only *.java files in here and below
--.svn
--WebContent
--bin
  --com   // only *.class files in here and below
share|improve this answer
I have only the Java classes there. Can I also compile it to classes via jar or any other command line not with ANT? – Odelya Jan 4 '11 at 8:25
@Odelya - use javac to compile java source files and (optionaly) jar to create libraries. jar can't compile and you don't need ant or maven, but especially ant greatly simplifies the build process (but you have to learn/understand ant basics). maven simplifies even more but maven is somewhat harder to understand. And it requires (permanent) internet connection. – Andreas_D Jan 4 '11 at 8:49
@Anderas_D yes I worked with Maven but didn't like it since the plugin for eclipse caused alot of extra work and not everything was compiled. until I find a good plugin I don't want to go back to Maven and pom.xml. I know how to use ANT but it was simple for me to execute it from FinalBuilder without and external file for build.xml – Odelya Jan 4 '11 at 12:14

This can be done with a command:

jar cf test.jar `find . -not -path "*/.svn/*" -not -type d`

The problem with jar is that if directory is passed it will be added recursively with all content. So our goal is to pass only files and only those of them which doesn't have '.svn' substring in the path. For this purpose find command is used with 2 conditions:

  1. -not -path "*/.svn*" filters out all svn files
  2. -not -type d filters out all directories

This will exclude empty directories from the jar though.

share|improve this answer

This is easily achieved (along with many other things) by build tools like maven and ant

share|improve this answer

There is a concept called Export in SVN. if you use that you will get the structure without the .svn repository. It is slightly different from the Check-Out.

After this you must be able to do a regular jar command from that directory instead of the repository folder.

share|improve this answer

It doesn't look like the jar program by itself will be able to do this. You will need to add in some other type of script to accomplish what you are looking for.

It looks like you may be using windows, so my guess is that you could write in this missing pieces that way.

Hope this helps.

share|improve this answer

As said by javamonkey79, I don' tthink you can do this just with the jar tool itself. What you should do is considering ant, and its jar task.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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