On 2013-06-04 17:44:44, Andrew Ho wrote:
> Hi Eric,
> Thanks for the reply. I just managed to figure it out, but I'm not sure if
> it's a bug or not.
> It turns out that eclim does not like the kind="src" line to be in the
> beginning of classpath definition
>
> This .classpath fails:
> <?xml version...>
> <classpath>
> <classpathentry kind="src" path="src" />
> <classpathentry kind="con" path="..." />
> <a bunch more classpath entries>
> </classpath>
>
> However, this one works:
> <?xml version...>
> <classpath>
> <classpathentry kind="con" path="..." />
> <a bunch more classpath entries>
> <classpathentry kind="src" path="src" />
> </classpath>
>
>
> I have no idea why one should fail and one should work.
>
> thanks,
> andrew
I finally got a bit of time to look into this, but right away I
noticed that my unittest project has its src entries at the top of the
classpath:
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="src-linked"/>
<classpathentry kind="lib" path="lib/junit.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Can you reproduce this problem with a small sample project?
> --
> You received this message because you are subscribed to the Google Groups "eclim-user" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
eclim-user+...@googlegroups.com.
> To post to this group, send email to
eclim...@googlegroups.com.
> Visit this group at
http://groups.google.com/group/eclim-user?hl=en.
> For more options, visit
https://groups.google.com/groups/opt_out.
>
>
--
eric