Author: dennisl
Date: Mon Jul 31 12:46:21 2006
New Revision: 427233
URL: http://svn.apache.org/viewvc?rev=427233&view=rev
Log:
o Need to escape { and } in apt.
Modified:
maven/plugins/trunk/maven-assembly-plugin/src/site/apt/examples/single/filtering-some-distribution-files.apt
Modified:
maven/plugins/trunk/maven-assembly-plugin/src/site/apt/examples/single/filtering-some-distribution-files.apt
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/site/apt/examples/single/filtering-some-distribution-files.apt?rev=427233&r1=427232&r2=427233&view=diff
==============================================================================
---
maven/plugins/trunk/maven-assembly-plugin/src/site/apt/examples/single/filtering-some-distribution-files.apt
(original)
+++
maven/plugins/trunk/maven-assembly-plugin/src/site/apt/examples/single/filtering-some-distribution-files.apt
Mon Jul 31 12:46:21 2006
@@ -30,10 +30,10 @@
File filtering is used to substitute variable fields from inside a file to
their represented values. For the Assembly Plugin, and most Maven filtering
- procedures, these variables are enclosed between ${ and }. For
- example, before a file is filtered, it contains <<<${project.artifactId}>>>.
+ procedures, these variables are enclosed between $\{ and \}. For
+ example, before a file is filtered, it contains
<<<$\{project.artifactId\}>>>.
But after filtering is complete, a new file is created with the project's
- <<<artifactId>>> substituting <<<${project.artifactId}>>> and that this new
+ <<<artifactId>>> substituting <<<$\{project.artifactId\}>>> and that this new
file is used instead of the original one.
Although filtering can be done during the process-resources phase, not all