I setup a particular directory to be a resource in the build section my POM
but how do I make it so that only *.xml files get copied?

For example, I have this in my build element of my POM:

<resources>
            <resource>
                <targetPath>amazon/nownow/domainimpl/user</targetPath>

<directory>src/main/java/amazon/nownow/domainimpl/user/</directory>
                <filtering>true</filtering>
            </resource>
            <resource>
                <targetPath></targetPath>
                <directory>src/main/resources</directory>
            </resource>
        </resources>

Reply via email to