WebResource not filtered with system properties.
------------------------------------------------
Key: MWAR-96
URL: http://jira.codehaus.org/browse/MWAR-96
Project: Maven 2.x War Plugin
Issue Type: Bug
Affects Versions: 2.0.2
Environment: java 5.0, Windows XP
Reporter: KlaasJan Elzinga
When filtering a resource:
<webResources>
<resource>
<directory>${basedir}/src/main/resources/</directory>
<filtering>true</filtering>
<includes>
<include>index.jsp</include>
</includes>
</resource>
</webResources>
The index.jsp contains:
<tr><td>java version</td><td>${java.version}</td></tr>
<tr><td>Project</td><td>${pom.name}</td></tr>
<tr><td>Version</td><td>${pom.version}</td></tr>
After mvn clean install the filtered index.jsp looks like:
<tr><td>java version</td><td>1.0.0.SNAPSHOT</td></tr>
<tr><td>Project</td><td>FrieslandBank TMS TNS WebApp</td></tr>
<tr><td>Version</td><td>1.0.0.SNAPSHOT</td></tr>
The value java.version is filtered to the version of the pom and not the
system property. The same goes for os.name which is translated to pom.name.
--
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