You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "gotama (JIRA)" <ji...@codehaus.org> on 2011/04/21 00:40:23 UTC

[jira] Commented: (MRESOURCES-104) while filtering resources the token replacement stops at the character @

    [ http://jira.codehaus.org/browse/MRESOURCES-104?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=264262#action_264262 ] 

gotama commented on MRESOURCES-104:
-----------------------------------


This is still broken in Maven 3.0.3 and maven-resources-plugin 2.5.

The following is not resource filtered:

<a href="mailto:email@address.com"><img src="${content.url}/images/my.gif"/></a>

Additionally, using the following work around breaks the pom.xml schema in violation of the required element outputDirectory:

<configuration>
<!--<outputDirectory>${project.build.outputDirectory}</outputDirectory>-->
  <useDefaultDelimiters>false</useDefaultDelimiters>
  <delimiters>
    <delimiter>${*}</delimiter>
  </delimiters>
</configuration>

and, for some reason, uncommenting the above outputDirectory config to forcing defining the value to its default, breaks my hibernate unit tests for some reason due to malconfiguring the datasource.




> while filtering resources the token replacement stops at the character @ 
> -------------------------------------------------------------------------
>
>                 Key: MRESOURCES-104
>                 URL: http://jira.codehaus.org/browse/MRESOURCES-104
>             Project: Maven 2.x Resources Plugin
>          Issue Type: Bug
>    Affects Versions: 2.4
>         Environment: Windows XP, Java 1.6.0_16
>            Reporter: Thomas Fahrmeyer
>            Assignee: Olivier Lamy
>            Priority: Critical
>             Fix For: 2.5
>
>         Attachments: m3-resource-filtering.zip, MRESOURCES-104.zip
>
>
> Create a simple file hello.txt under src/main/resources with following content:
> "
> This property ${testProperty} was replaced
> but the one behind a @ will not be processed, as you
> see:  ${testProperty}. You shouldn't see a property reference.
> "
> define a build section in your pom.xml like this
> <build>
>     	<resources>
> 			<resource>
> 				<directory>src/main/resources</directory>
> 				<filtering>true</filtering>
> 				<includes>
> 					<include>**/*.txt</include>
> 				</includes>
> 			</resource>
> 			<resource>
> 				<directory>src/main/resources</directory>
> 				<filtering>false</filtering>
> 				<excludes>
> 					<exclude>**/*.txt</exclude>
> 				</excludes>
> 			</resource>
> 		</resources>
> Run the command: 
> mvn process-resources -DtestProperty=IwasReplaced
> this produces the output
> "
> This property IwasReplaced was replaced
> but the one behind a @ will not be processed, as you
> see:  ${testProperty}. You shouldn't see a property reference.
> "
> As you see, the second property reference was not resolved. The replacement just stops after the @ character.

-- 
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