Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.9
-
Fix Version/s: 1.9
-
Labels:None
-
Number of attachments :
Description
This is a problem in MPECLIPSE-47, committed a few hours ago:
if your pom declares the same directory both in sourceDirectory and in
resources (common for .properties files)
<build>
<sourceDirectory>src/java</sourceDirectory>
<resources>
<resource>
<directory>src/java</directory>
<includes>
<include>*/.properties</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
the resulting .classpath file has duplicate entries and eclipse complains about it.
A fix for duplicate directories is included in the patch for
MPECLIPSE-48