You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sj...@apache.org on 2022/05/18 10:32:13 UTC

[maven-checkstyle-plugin] branch master updated: [MCHECKSTYLE-414] - documentation: property expansion example does not parse

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d67f2ff  [MCHECKSTYLE-414] - documentation: property expansion example does not parse
d67f2ff is described below

commit d67f2ff11c97252d2058620c7acdab5d1f2c4ce6
Author: Pearce Merritt <pe...@everydaylabs.com>
AuthorDate: Mon May 16 17:48:32 2022 -0700

    [MCHECKSTYLE-414] - documentation: property expansion example does not parse
---
 src/site/apt/examples/custom-property-expansion.apt.vm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/site/apt/examples/custom-property-expansion.apt.vm b/src/site/apt/examples/custom-property-expansion.apt.vm
index f22c0c1..b133760 100644
--- a/src/site/apt/examples/custom-property-expansion.apt.vm
+++ b/src/site/apt/examples/custom-property-expansion.apt.vm
@@ -68,7 +68,10 @@ Using Custom Checkstyle Property Expansion Definitions
         <version>${project.version}</version>
         <configuration>
           <configLocation>checkstyle.xml</configLocation>
-          <propertyExpansion>projectname=whizbang</propertyExpansion>
+          <propertyExpansion>
+            projectname=whizbang
+            anotherProperty=bazinga
+          </propertyExpansion>
         </configuration>
       </plugin>
     </plugins>
@@ -91,7 +94,7 @@ Using Custom Checkstyle Property Expansion Definitions
         <version>${project.version}</version>
         <configuration>
           <configLocation>checkstyle.xml</configLocation>
-          <propertesLocation>${basedir}/checkstyle.properties</propertiesLocation>
+          <propertiesLocation>${basedir}/checkstyle.properties</propertiesLocation>
         </configuration>
       </plugin>
     </plugins>