if "<%@ page import = "java.util.List" %>" is present in a file, filtering
does'nt work
---------------------------------------------------------------------------------------
Key: MNG-4949
URL: http://jira.codehaus.org/browse/MNG-4949
Project: Maven 2 & 3
Issue Type: Bug
Components: POM
Affects Versions: 3.0.1, 3.0.2
Environment: Windows 7
Reporter: Alexandre Bénard
Attachments: pom.xml, test.properties
If you have this test.properties file in src/main/resources directory (for
example):
<%@ page import = "java.util.List" %>
${project.name}
${project.version}
And you add correct filtering information in pom.xml:
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<includes>
<include>**/*.xml</include>
<include>**/*.jsp</include>
<include>**/*.properties</include>
</includes>
</resource>
With "mvn package" command, the build is successful but the file is not
filtered.
If you remove the first line (<%@ page import = "java.util.List" %>), there is
no problem.
Produce in 3.0.1 and 3.0.2-snapshot (from today) but not in 2.2.1.
--
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