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"
^^^^^^^^^
If you filter out those "resources" (the .svn
folders), chances are they won't be included in the final Jar.
VonC
2010-03-20 21:56:21
This worked great for me. Thanks.
Zoot
2010-09-18 04:48:30