tags:

views:

200

answers:

1

How can I stop this from happening, it is grabbing files in .svn folders when I create jars. The .svn folder is unchecked in the prompt.

+2  A: 

Can you try (after this blog entry)

Window -> Preferences, Java -> Compiler -> Building.  
Under “Output folder” add “, `.svn/`” to “Filtered Resources” (so that you get “`*.launch, .svn/`”).

The problem could come from the fact a Jar exporter includes the option:

"export generated class files and resources"
                                  ^^^^^^^^^

alt text

If you filter out those "resources" (the .svn folders), chances are they won't be included in the final Jar.

VonC
This worked great for me. Thanks.
Zoot