You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2020/05/20 17:30:45 UTC

[maven-assembly-plugin] branch master updated: escape property against .vm evaluation

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-assembly-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 90b237b  escape property against .vm evaluation
90b237b is described below

commit 90b237bb116c4a30613cfbefe97d917d24cb171d
Author: Hervé Boutemy <hb...@apache.org>
AuthorDate: Wed May 20 19:30:40 2020 +0200

    escape property against .vm evaluation
---
 src/site/apt/examples/multimodule/module-source-inclusion-simple.apt.vm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/site/apt/examples/multimodule/module-source-inclusion-simple.apt.vm b/src/site/apt/examples/multimodule/module-source-inclusion-simple.apt.vm
index adf03cf..b5a8e24 100644
--- a/src/site/apt/examples/multimodule/module-source-inclusion-simple.apt.vm
+++ b/src/site/apt/examples/multimodule/module-source-inclusion-simple.apt.vm
@@ -64,7 +64,7 @@ Including Module Sources
           <fileSet>
             <outputDirectory>sources/${module.artifactId}</outputDirectory>
             <excludes>
-              <exclude>${project.build.directory}/**</exclude>
+              <exclude>\${project.build.directory}/**</exclude>
             </excludes>
           </fileSet>
         </fileSets>