Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Subsequent to the refactoring of the resources into uimaj/eclipse-plugin-superPom, running eclipse:eclipse is no longer putting the src/main/resources things into the class path.
This is likely due to the resources not being merged with the maven overall superpom, anymore; that pom (see http://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Super_POM ) contains
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
but when the eclipse-plugin-superPom had a similar <resources> element, it was (erroneously) presumed that its resources would be merged with the super pom. The fix is to just put this in explicitly.