On Thu, Aug 27, 2009 at 3:07 PM, Brandon Goodin <[email protected]>wrote:
> non .java files that belong on the classpath are supposed to go under the
> resources directory in Maven.
True. Brandon is right, you should put them there, otherwise you need to
adjust your pom to include:
<resource>
<directory>src/main/java</directory>
<filtering>true</filtering>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
I should probably be more standard and move them to resources. I'll do it
now:)