Skip to content

Commit

Permalink
Merge pull request #76 from gmatheu/site_regex-properties_value
Browse files Browse the repository at this point in the history
Site: Properly showing 'value' tag on regex-properties usage page
  • Loading branch information
stefanseifert authored Jun 2, 2020
2 parents e7c788c + 4a3c00f commit f9585af
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/site/apt/usage.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ parsedVersion.buildNumber
-------------------

Apart from the above properties the following properties will be set:

-------------------
parsedVersion.nextMajorVersion
parsedVersion.nextMinorVersion
Expand All @@ -285,7 +285,7 @@ parsedVersion.nextBuildNumber

And another set of properties is set by using the defined formatting.
See {{{./parse-version-mojo.html}build-helper:parse-version}}

-------------------
formattedVersion.majorVersion
formattedVersion.minorVersion
Expand All @@ -296,7 +296,7 @@ formattedVersion.nextMinorVersion
formattedVersion.nextIncrementalVersion
formattedVersion.nextBuildNumber
-------------------


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

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

<<<portNames>>> and <<<urls>>> parameters can be combined.
Expand Down Expand Up @@ -539,7 +539,7 @@ tomcat.http.port
</goals>
<configuration>
<name>human.version</name>
<value>${project.version}</value>
<value>\${project.version}</value>
<regex>-SNAPSHOT</regex>
<replacement> pre-release development version</replacement>
<failIfNoMatch>false</failIfNoMatch>
Expand Down Expand Up @@ -578,7 +578,7 @@ tomcat.http.port
<regexPropertySettings>
<regexPropertySetting>
<name>human.version</name>
<value>${project.version}</value>
<value>\${project.version}</value>
<regex>-SNAPSHOT</regex>
<replacement> pre-release development version</replacement>
<failIfNoMatch>false</failIfNoMatch>
Expand Down Expand Up @@ -737,15 +737,15 @@ tomcat.http.port
</project>
-------------------

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

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

Source files are computed relative to the <<<fileset>>>'s required <<<directory>>> property.
If the <<<fileset>>> has an <<<outputDirectory>>> property, target files are computed relative to that;
otherwise, target files are also computed relative to <<<directory>>>.

The <<<fileset>>> element supports a <<<mapper>>>, whose <<<type>>> can be any of the built-in mappers
<<<flatten glob identity merge package unpackage>>>. Alternatively, the <<<classname>>> property can specify the
fully qualified name of a class that implements <<<org.apache.maven.shared.model.fileset.mappers.FileNameMapper>>>.
Expand Down

0 comments on commit f9585af

Please sign in to comment.