Skip to content

Commit

Permalink
Fixes from PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Aug 27, 2024
1 parent 66c5909 commit 0301ad6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apache-maven/src/assembly/maven/conf/maven.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Maven user properties
#
# The properties defined in this file will be made available through
# user properties at the very beginning of the Maven's boot process.
# user properties at the very beginning of Maven's boot process.
#

maven.installation.conf = ${maven.home}/conf
Expand Down
8 changes: 4 additions & 4 deletions src/site/markdown/configuring.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ _Maven properties files_ and are Java properties files with a
few enhancements. Contrary to standard properties file, those files
are UTF-8 encoded.

### File inclusion
### File Inclusion

Additional files can be loaded using the special `${includes}` key.
The associated value is a comma separated list of additional files to
The associated value is a comma-separated list of additional files to
include. Each item may be enclosed in quotes to gracefully include spaces.
Items are trimmed before being loaded. If the first character of an item
is a question mark, the load will silently fail if the file does not exist.
Expand All @@ -66,7 +66,7 @@ ${includes} = ?"${maven.user.conf}/maven.properties", \
?"${maven.project.conf}/maven.properties"
```

### Property substitution
### Property Substitution

Properties undergo the _property substitution_ process, so that any
value containing a `${xxx}` placeholder will be substituted with the value
Expand All @@ -93,7 +93,7 @@ and the _project_ specific properties from `${session.rootDirectory}/.mvn/maven.
Maven is a command line tool, and, as such, accepts various command
line arguments. The `MAVEN_ARGS` environment value is used to
provide additional arguments to Maven. Those arguments will be
pre-pended to the actual list of command line arguments.
prepended to the actual list of command line arguments.

For example, options and goals could be defined with the value
`-B -V checkstyle:checkstyle`.
Expand Down

0 comments on commit 0301ad6

Please sign in to comment.