Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: 2.5
-
Fix Version/s: None
-
Component/s: escape string
-
Labels:None
-
Environment:maven 2.2.1
-
Number of attachments :
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...
I also try with #%comment to espace:§@toto@ and I have the same problem.