Skip to content

Commit f9585af

Browse files
Merge pull request #76 from gmatheu/site_regex-properties_value
Site: Properly showing 'value' tag on regex-properties usage page
2 parents e7c788c + 4a3c00f commit f9585af

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/site/apt/usage.apt.vm

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ parsedVersion.buildNumber
275275
-------------------
276276

277277
Apart from the above properties the following properties will be set:
278-
278+
279279
-------------------
280280
parsedVersion.nextMajorVersion
281281
parsedVersion.nextMinorVersion
@@ -285,7 +285,7 @@ parsedVersion.nextBuildNumber
285285

286286
And another set of properties is set by using the defined formatting.
287287
See {{{./parse-version-mojo.html}build-helper:parse-version}}
288-
288+
289289
-------------------
290290
formattedVersion.majorVersion
291291
formattedVersion.minorVersion
@@ -296,7 +296,7 @@ formattedVersion.nextMinorVersion
296296
formattedVersion.nextIncrementalVersion
297297
formattedVersion.nextBuildNumber
298298
-------------------
299-
299+
300300

301301
The property prefix <<<parsedVersion>>> can be configured using the <<<propertyPrefix>>> parameter.
302302

@@ -466,7 +466,7 @@ releasedVersion.qualifier
466466
</build>
467467
</project>
468468
-------------------
469-
It is also possible to define port names via resource file(s). Resources in classpath are also supported (artifact
469+
It is also possible to define port names via resource file(s). Resources in classpath are also supported (artifact
470470
with resource has to be defined in plugin dependencies section).
471471

472472
<<<portNames>>> and <<<urls>>> parameters can be combined.
@@ -539,7 +539,7 @@ tomcat.http.port
539539
</goals>
540540
<configuration>
541541
<name>human.version</name>
542-
<value>${project.version}</value>
542+
<value>\${project.version}</value>
543543
<regex>-SNAPSHOT</regex>
544544
<replacement> pre-release development version</replacement>
545545
<failIfNoMatch>false</failIfNoMatch>
@@ -578,7 +578,7 @@ tomcat.http.port
578578
<regexPropertySettings>
579579
<regexPropertySetting>
580580
<name>human.version</name>
581-
<value>${project.version}</value>
581+
<value>\${project.version}</value>
582582
<regex>-SNAPSHOT</regex>
583583
<replacement> pre-release development version</replacement>
584584
<failIfNoMatch>false</failIfNoMatch>
@@ -737,15 +737,15 @@ tomcat.http.port
737737
</project>
738738
-------------------
739739

740-
* Set a property according to whether target files are up to date with respect to their sources
740+
* Set a property according to whether target files are up to date with respect to their sources
741741

742742
'Up to date' means that the target file both exists and has a 'last modification timestamp' (<<<java.io.File.lastModified()>>>)
743743
equal to or later than that of the corresponding source file(s).
744744

745745
Source files are computed relative to the <<<fileset>>>'s required <<<directory>>> property.
746746
If the <<<fileset>>> has an <<<outputDirectory>>> property, target files are computed relative to that;
747747
otherwise, target files are also computed relative to <<<directory>>>.
748-
748+
749749
The <<<fileset>>> element supports a <<<mapper>>>, whose <<<type>>> can be any of the built-in mappers
750750
<<<flatten glob identity merge package unpackage>>>. Alternatively, the <<<classname>>> property can specify the
751751
fully qualified name of a class that implements <<<org.apache.maven.shared.model.fileset.mappers.FileNameMapper>>>.

0 commit comments

Comments
 (0)