Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.8
-
Fix Version/s: 1.9
-
Labels:None
-
Number of attachments :
Description
The classpath templates avoid duplicated entries by checking if a resource dir doesn't conflict with the source dir:
<j:if test="$
{!resourceDirectory.equals(srcDir)}">
<classpathentry kind="src" path="$
" including="$
{includingAsString}" excluding="$
{excludingAsString}" />
</j:if>
But the test above doesn't catch the situation where a test resource uses the source dir (and vice versa).
I will fix it...