Declaring the same resource dir in pom and overwriting it in a profile ----------------------------------------------------------------------
Key: MNG-2933 URL: http://jira.codehaus.org/browse/MNG-2933 Project: Maven 2 Issue Type: Bug Components: Profiles Affects Versions: 2.0.6 Reporter: Dirk Olmes Priority: Minor I have a pom that declares a resource dir in the main section of the pom and a profile which re-declares the same resource dir in a profile, this time with excludes. Example: <project ...> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> </build> <profiles> <profile> <id...> <build> <resources> <resource> <directory>src/main/resources</directory> <excludes>....</excludes> </resource> </resources> </build> </profile> </profiles> </project Running mvn -X with the profile activated shows that the same resource dir is added twice to the runtime model. I would have expected the profile to "overwrite" the resource directory as this is the behaviour for re-declaring dependencies in a profile over dependencies in the main section. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira