This happens when Eclipse gets confused. Configure the apache repository. Then go to the module of POI and the HEAD version. Select "create new project of type" select "java project" (VERY IMPORTANT). Then it will know to ignore the CVS directories.

-Andy

Danny Mui wrote:

Hi Poi Folk,

Since some of you use Eclipse, I was wondering if any of you found a way to have the Java perspective ignore the CVS directories?

Only thing i found on the eclipse newsgroups (thanks eclipse for not having it public so google can search it!! but anyway...).

======= snip =============================

Create a small plug-in. Let's call it org.xyz.hidecvs, you can call it
whatever you want. Define it like this:

<?xml version="1.0" encoding="UTF-8"?>
<plugin
   id="org.xyz.hidecvs"
   name="Hide CVS"
   version="1.0"
   provider-name="Your Company">
<requires>
   <import plugin="org.eclipse.jdt.ui"/>
</requires>

<extension point="org.eclipse.jdt.ui.javaElementFilters">
   <filter
       selected="true"
       pattern="CVS"/>
   <filter
       selected="true"
       pattern="*.CVS"/>
</extension>
</plugin>

======= snip =============================

In the meantime I'll just ignore it ;)

danny


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]





--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to