Problem with #{ in filtered files
---------------------------------
Key: ARCHETYPE-183
URL: http://jira.codehaus.org/browse/ARCHETYPE-183
Project: Maven Archetype
Issue Type: Bug
Affects Versions: 2.0-alpha-3
Reporter: Dominique Jean-Prost
I have files I want to copy in when generating a projet.
Those files contains a #{whateverhere} because they are jsf el.
Those files are copied using
<fileSet filtered="true" packaged="false">
<directory>src/main/webapp</directory>
<includes>
<include>**/*</include>
</includes>
</fileSet>
After the generation step, I get for instance :
<ui:define name="zone-logo">
<img src="#themePrefixWithContextRoot/images/logo.gif"
width="99" height="50" />
</ui:define>
instead of <ui:define name="zone-logo">
<img src="#{themePrefixWithContextRoot}/images/logo.gif"
width="99" height="50" />
</ui:define>
of
<ui:define name="zone-posts-techniques">
<input type="hidden" name="_flowExecutionKey"
value="#flowExecutionKey" />
</ui:define>
instead of
<ui:define name="zone-posts-techniques">
<input type="hidden" name="_flowExecutionKey"
value="#{flowExecutionKey}" />
</ui:define>
--
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