I'm working on replacing the POM parser in Maven 1.1, and POMS that
previously parsed with things like this:
    <resources>
        <resource>
            <directory>../../../../src/messages</directory>
            <includes>**/*.properties</includes>
        </resource>
    </resources>
Now fail because the includes format is not legal. It should be:
      <includes>
        <include>**/*.properties</include>
      </includes>

Anyone have a strong objection to these POMs no longer parsing? As this
is probably a common error (it's in the m1 test cases :), that silently
failed before, we can address it in an FAQ.

- Brett



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to