Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0-alpha-3
-
None
-
None
Description
I have files I want to copy in when generating a projet.
Those files contains a #
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="#
/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="#
" />
</ui:define>
Attachments
Issue Links
- duplicates
-
ARCHETYPE-180 Lost curly brackets when creating project from an archetype
- Closed
- is related to
-
ARCHETYPE-420 curly brackets lost when filtered=true
- Closed