Spurious warning about encoding when there is no filtering taking place -----------------------------------------------------------------------
Key: MRESOURCES-89 URL: http://jira.codehaus.org/browse/MRESOURCES-89 Project: Maven 2.x Resources Plugin Issue Type: Bug Affects Versions: 2.3 Reporter: benson margulies The following produces warnings about using the platform default encoding. Since filtering is off, no encoding should be in use at all, so the point should be moot and no warning should be needed. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.3</version> <executions> <execution> <id>copy-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/dicts</outputDirectory> <resources> <resource> <directory>../../../rlp/bl1/dicts</directory> <filtering>false</filtering> <!-- <include>**/morpho-cache-mor*.bin</include> --> </resource> </resources> </configuration> </execution> </executions> </plugin> -- 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