@ symbol in filtered resource prevents subsequent filters ---------------------------------------------------------
Key: MRESOURCES-124 URL: http://jira.codehaus.org/browse/MRESOURCES-124 Project: Maven 2.x Resources Plugin Issue Type: Bug Affects Versions: 2.4.2 Reporter: Cameron Fieber Priority: Minor This was something that broke for us upgrading from 2.3 to 2.4.2: In a file containing: sqlplus user/p...@$1 @${regression.oracle.scripts}/purge.sql impdp user/p...@$1 PARFILE=${regression.oracle.scripts}/imp.par DIRECTORY=dump_dir DUMPFILE=${2} The second occurrence of ${regression.oracle.scripts} wouldn't get substituted, I think due to the odd number of '@' characters. Defining another property <oracle.at>@</oracle.at> worked around the issue for me: sqlplus user/p...@$1 ${oracle.at}${regression.oracle.scripts}/purge.sql impdp user/p...@$1 PARFILE=${regression.oracle.scripts}/imp.par DIRECTORY=dump_dir DUMPFILE=${2} -- 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