Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
2.5
-
None
-
None
-
maven 2.2.1
Description
if I configure the maven-resource-plugin in order to escape a delimiter in a comment, the escapeString is not removed in the target.
src/main/resources/properties/test.properties
#%comment to espace:§@toto question=@message@
pom.xml
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5-SNAPSHOT</version> <configuration> <escapeString>§</escapeString> </configuration> </plugin>
target/classes/properties/test.properties
#%comment to espace:§@toto question=A nice message...